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