From bac8eeeafa235a4f7b060c7431f675014f63b5e5 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 3 Jul 2023 16:07:44 +0000 Subject: [PATCH 01/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=371343&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 51bab4a6e..00b98afe5 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -156,7 +156,7 @@ To be added. To be added. - + - + @@ -193,8 +193,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -204,7 +204,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -231,7 +231,7 @@ To be added. To be added. - + - + @@ -270,10 +270,10 @@ To be added. Use this property in conjunction with or . - + @@ -300,8 +300,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -311,7 +311,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -505,7 +505,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index a3b366ad2..c873d5586 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -21,8 +21,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 42a800f98..f854ab767 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -35,8 +35,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index f793a7cf9..a012e714a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -539,8 +539,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -594,8 +594,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From 26dda80ce4c3dbac1a1cc649a40690d138f34e9e Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Thu, 6 Jul 2023 15:01:07 +0100 Subject: [PATCH 02/63] Update wam.md --- .../acquiring-tokens/desktop-mobile/wam.md | 28 +++++++++++++++++-- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 1b98666a6..471da8bd0 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -47,10 +47,10 @@ Due to platform-specific and backwards compatibility requirements, WAM support i After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. ```csharp -BrokerOptions options = new BrokerOptions(BrokerOptions.OperatingSystems.Windows); +var scopes = new[] { "User.Read" }; +BrokerOptions options = new BrokerOptions(BrokerOptions.OperatingSystems.Windows); options.Title = "My Awesome Application"; -options.ListOperatingSystemAccounts = true; IPublicClientApplication app = PublicClientApplicationBuilder.Create("YOUR_CLIENT_ID") @@ -59,7 +59,29 @@ IPublicClientApplication app = .WithBroker(options) .Build(); -var authResult = await app.AcquireTokenInteractive(new List() { "User.Read" }).ExecuteAsync(); +IAccount existingAccount = await FetchExistingAccountFromCache().ConfigureAwait(false); +AuthenticationResult result = null; + +try +{ + // Try to sing-in the previously signed-in account + if (existingAccount != null) + { + result = await _pca.AcquireTokenSilent(scopes, existingAccount).ExecuteAsync(); + } + // If it does not exist, try to sign in with the Windows account + else + { + result = await _pca.AcquireTokenSilent(scopes, PublicClientApplication.OperatingSystemAccount) + .ExecuteAsync(); + } +} +// Can't get a token silently, go interactive +catch (MsalUiRequiredException ex) +{ + result = await app.AcquireTokenInteractive(new List() { "User.Read" }).ExecuteAsync(); +} + ``` When using the broker, if the [authority](/azure/active-directory/develop/msal-client-application-configuration#authority) used is targeting Azure AD as well as personal Microsoft accounts, the user will first be prompted to select an account using the built-in system account picker. From 00c08f50b6e5b8e40efb8cff7b4fe6aa78d29e91 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 10 Jul 2023 16:11:07 +0000 Subject: [PATCH 03/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=372506&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 00b98afe5..8d58fbd43 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -156,7 +156,7 @@ To be added. To be added. - + - + @@ -193,8 +193,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -204,7 +204,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -231,7 +231,7 @@ To be added. To be added. - + - + @@ -270,10 +270,10 @@ To be added. Use this property in conjunction with or . - + @@ -300,8 +300,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -311,7 +311,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -505,7 +505,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c873d5586..a3b366ad2 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -21,8 +21,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index f854ab767..42a800f98 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -35,8 +35,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index a012e714a..f793a7cf9 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -539,8 +539,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -594,8 +594,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From c00c2d07e8c7a2a82e29cff894efb5976c0cb2e5 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Mon, 10 Jul 2023 17:47:18 +0100 Subject: [PATCH 04/63] Update powershell-support.md --- .../advanced/powershell-support.md | 28 +++++-------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/msal-dotnet-articles/advanced/powershell-support.md b/msal-dotnet-articles/advanced/powershell-support.md index 9e91377ab..ce6f271d3 100644 --- a/msal-dotnet-articles/advanced/powershell-support.md +++ b/msal-dotnet-articles/advanced/powershell-support.md @@ -3,32 +3,18 @@ title: How to use MSAL.NET form PowerShell description: "How to use MSAL.NET to acquire tokens from a PowerShell script." --- -# How to use MSAL.NET from PowerShell +# Use a supported SDK -There is no official PowerShell module or wrapper for MSAL libraries maintained by the SDK team. However, PowerShell was designed to be able to call into .NET code and there are [numerous resources](https://stackoverflow.com/questions/3079346/how-to-reference-net-assemblies-using-powershell) that describe how to do this. +There is no official PowerShell module or wrapper for MSAL libraries maintained by the SDK team. -A community project for a PowerShell wrapper exists at https://www.powershellgallery.com/packages/MSAL.PS/ - -## Make sure you load the correct DLL - -After you download the [MSAL NuGet package](https://www.nuget.org/packages/Microsoft.Identity.Client/), unzip it, and take a look inside. In the `lib` folder there are the DLLs you are looking for: - -![Contents of the MSAL NuGet package](../media/msal-folder-content.png) +Consider using higher level APIs which are officially supported: -If you are writing modules for the new PowerShell Core, then you should load the `netcoreapp2.1` version. If you are writing a module for PowerShell classic, then look into the `net45` directory. If you aren't sure, start with the `net45` version, which only works on Windows. + - [Microsoft Graph PowerShell SDK](https://learn.microsoft.com/powershell/microsoftgraph/get-started?view=graph-powershell-1.0) + - [Azure PowerShell SDK](https://learn.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-10.0.0) -Avoid loading the `netstandard1.3` DLL, as this version is missing a lot of functionality. -## Don't forget about token caching +PowerShell was designed to be able to call into .NET code and there are [numerous resources](https://stackoverflow.com/questions/3079346/how-to-reference-net-assemblies-using-powershell) that describe how to do this. -MSAL.NET will create and manage a token cache, but it will NOT persist it. You are responsible for persisting and encrypting the token cache. If you do not, MSAL will only keep the token cache in memory, and when the process stops, the tokens are lost, and users will have to relogin. - -### Windows - -On Windows, all our samples use DPAPI to encrypt a file with the token cache. Inspect this sample for [details](https://github.com/azure-samples/active-directory-dotnet-desktop-msgraph-v2). - -### Mac and Linux +A community project for a PowerShell wrapper exists at https://www.powershellgallery.com/packages/MSAL.PS/ -If you target PowerShell Core / .NET Core, it important to understand the DPAPI encryption solution above will NOT work. For a cross platform token cache persistence implementation, have a look at: -https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet From 78bc993bc5d8b2bdc14e1b423ccab0407f9d70cd Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 10 Jul 2023 14:25:53 -0700 Subject: [PATCH 05/63] Update powershell-support.md --- msal-dotnet-articles/advanced/powershell-support.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/msal-dotnet-articles/advanced/powershell-support.md b/msal-dotnet-articles/advanced/powershell-support.md index ce6f271d3..67e89dd34 100644 --- a/msal-dotnet-articles/advanced/powershell-support.md +++ b/msal-dotnet-articles/advanced/powershell-support.md @@ -1,20 +1,17 @@ --- -title: How to use MSAL.NET form PowerShell +title: Using MSAL.NET from PowerShell description: "How to use MSAL.NET to acquire tokens from a PowerShell script." --- -# Use a supported SDK +# Using MSAL.NET from PowerShell -There is no official PowerShell module or wrapper for MSAL libraries maintained by the SDK team. +There is no official PowerShell module or wrapper for MSAL libraries maintained by the SDK team - our team recommends using a supported SDK. Consider using higher level APIs which are officially supported: - [Microsoft Graph PowerShell SDK](https://learn.microsoft.com/powershell/microsoftgraph/get-started?view=graph-powershell-1.0) - [Azure PowerShell SDK](https://learn.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-10.0.0) - PowerShell was designed to be able to call into .NET code and there are [numerous resources](https://stackoverflow.com/questions/3079346/how-to-reference-net-assemblies-using-powershell) that describe how to do this. -A community project for a PowerShell wrapper exists at https://www.powershellgallery.com/packages/MSAL.PS/ - - +For non-production scenarios or cases where you have the ability to leverage community tools we recommend using [MSAL.PS](https://www.powershellgallery.com/packages/MSAL.PS/). From 537932205a275b88a1ef134a84a068b2b9c1a25d Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 10 Jul 2023 14:26:26 -0700 Subject: [PATCH 06/63] Update TOC.yml --- msal-dotnet-articles/TOC.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/TOC.yml b/msal-dotnet-articles/TOC.yml index f53399e7f..46dcf5d30 100644 --- a/msal-dotnet-articles/TOC.yml +++ b/msal-dotnet-articles/TOC.yml @@ -79,7 +79,7 @@ href: advanced/client-credential-multi-tenant.md - name: Performance testing href: advanced/performance-testing.md - - name: PowerShell support + - name: Using MSAL.NET from PowerShell href: advanced/powerShell-support.md - name: Testing apps using MSAL href: advanced/testing-apps-using-msal.md From 98ae63078c747772f2294eadae4ad9703be76907 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 10 Jul 2023 14:31:18 -0700 Subject: [PATCH 07/63] Update powershell-support.md --- msal-dotnet-articles/advanced/powershell-support.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msal-dotnet-articles/advanced/powershell-support.md b/msal-dotnet-articles/advanced/powershell-support.md index 67e89dd34..0f1db9dab 100644 --- a/msal-dotnet-articles/advanced/powershell-support.md +++ b/msal-dotnet-articles/advanced/powershell-support.md @@ -9,8 +9,8 @@ There is no official PowerShell module or wrapper for MSAL libraries maintained Consider using higher level APIs which are officially supported: - - [Microsoft Graph PowerShell SDK](https://learn.microsoft.com/powershell/microsoftgraph/get-started?view=graph-powershell-1.0) - - [Azure PowerShell SDK](https://learn.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-10.0.0) + - [Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/get-started) + - [Azure PowerShell SDK](/powershell/azure/new-azureps-module-az) PowerShell was designed to be able to call into .NET code and there are [numerous resources](https://stackoverflow.com/questions/3079346/how-to-reference-net-assemblies-using-powershell) that describe how to do this. From 915d46ada18fc677ae621799de26eaf032d1169b Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 10 Jul 2023 22:57:54 +0000 Subject: [PATCH 08/63] CI Update Build.Reason:Manual by Den Delimarsky Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=372593&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../msal-model-dotnet-latest.xml | 11 +++ .../CredentialDescription.xml | 22 ++--- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 +- .../TokenAcquirerAppTokenCredential.xml | 99 +++++++++++++++++++ .../TokenAcquirerTokenCredential.xml | 99 +++++++++++++++++++ .../msal-model-dotnet-latest.json | 2 +- 8 files changed, 225 insertions(+), 16 deletions(-) create mode 100644 dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml create mode 100644 dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml diff --git a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml index cd7d212db..ce3708003 100644 --- a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml @@ -2,6 +2,7 @@ + @@ -671,6 +672,11 @@ + + + + + @@ -685,6 +691,11 @@ + + + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 8d58fbd43..2f5e6b3a7 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -156,7 +156,7 @@ To be added. To be added. - + - + @@ -193,8 +193,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -204,7 +204,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -231,7 +231,7 @@ To be added. To be added. - + - + @@ -270,10 +270,10 @@ To be added. Use this property in conjunction with or . - + @@ -300,8 +300,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -311,7 +311,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -505,7 +505,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index a3b366ad2..c873d5586 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -21,8 +21,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 42a800f98..f854ab767 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -35,8 +35,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index f793a7cf9..a012e714a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -539,8 +539,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -594,8 +594,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml new file mode 100644 index 000000000..65dfe8127 --- /dev/null +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml @@ -0,0 +1,99 @@ + + + + + + + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + Azure.Core.TokenCredential + + + + + Azure SDK token credential for App tokens based on the ITokenAcquisition service. + + To be added. + + + + + + + + + Constructor + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + + + + Token acquisition. + + Constructor from an ITokenAcquisition service. + + To be added. + + + + + + + + + Method + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + Azure.Core.AccessToken + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml new file mode 100644 index 000000000..209667c41 --- /dev/null +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml @@ -0,0 +1,99 @@ + + + + + + + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + Azure.Core.TokenCredential + + + + + Azure SDK token credential based on the ITokenAcquisition service. + + To be added. + + + + + + + + + Constructor + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + + + + Token acquisition. + + Constructor from an ITokenAcquisition service. + + To be added. + + + + + + + + + Method + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + Azure.Core.AccessToken + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + + + + Method + + Microsoft.Identity.Web.Azure + 2.12.4.0 + + + System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + diff --git a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json index d889b22fd..ae1ca4e4b 100644 --- a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json @@ -1 +1 @@ -{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"3.2.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"3.2.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file From 2fa7bd1135987aae3edd0402dfc462df3340c131 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 10 Jul 2023 16:37:39 -0700 Subject: [PATCH 09/63] Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md Co-authored-by: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 471da8bd0..96173b5f6 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -64,7 +64,7 @@ AuthenticationResult result = null; try { - // Try to sing-in the previously signed-in account + // Try to sign-in the previously signed-in account if (existingAccount != null) { result = await _pca.AcquireTokenSilent(scopes, existingAccount).ExecuteAsync(); From f410c5f51a418eeea2508586109c7d4bab36bd80 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 10 Jul 2023 16:38:14 -0700 Subject: [PATCH 10/63] Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md Co-authored-by: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 96173b5f6..3dac1dc65 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -79,7 +79,7 @@ try // Can't get a token silently, go interactive catch (MsalUiRequiredException ex) { - result = await app.AcquireTokenInteractive(new List() { "User.Read" }).ExecuteAsync(); + result = await app.AcquireTokenInteractive(new List() { scopes }).ExecuteAsync(); } ``` From 970c1fbcb859e8a4c6624b168ef2259b588ed7a7 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Tue, 11 Jul 2023 09:46:50 +0100 Subject: [PATCH 11/63] Update wam.md --- .../acquiring-tokens/desktop-mobile/wam.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 3dac1dc65..44ca76fba 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -59,17 +59,19 @@ IPublicClientApplication app = .WithBroker(options) .Build(); -IAccount existingAccount = await FetchExistingAccountFromCache().ConfigureAwait(false); AuthenticationResult result = null; +// Try to use the previously signed-in account from the cache +IEnumerable accounts = await app.GetAccountsAsync(); +IAccount existingAccount = accounts.FirstOrDefault(); + try -{ - // Try to sign-in the previously signed-in account +{ if (existingAccount != null) { result = await _pca.AcquireTokenSilent(scopes, existingAccount).ExecuteAsync(); } - // If it does not exist, try to sign in with the Windows account + // Next, try to sign in silently with the account that the user is signed into Windows else { result = await _pca.AcquireTokenSilent(scopes, PublicClientApplication.OperatingSystemAccount) From c30c1b5f7d02ce62509025706099673c7e3862b7 Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Tue, 11 Jul 2023 12:32:39 -0700 Subject: [PATCH 12/63] Update managed-identity.md to include Object ID --- msal-dotnet-articles/advanced/managed-identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/managed-identity.md b/msal-dotnet-articles/advanced/managed-identity.md index a8f5813c2..d090e5155 100644 --- a/msal-dotnet-articles/advanced/managed-identity.md +++ b/msal-dotnet-articles/advanced/managed-identity.md @@ -63,7 +63,7 @@ AuthenticationResult result = await mi.AcquireTokenForManagedIdentity(resource) ### User-assigned managed identities -For user-assigned managed identities, the developer needs to pass the managed identity client ID or the full resource identifier string if client ID is not available when creating . +For user-assigned managed identities, the developer needs to pass the managed identity client id or object id or the full resource identifier string if client ID is not available when creating . Like in the case for system-assigned managed identities, is called with the resource to acquire a token for, such as `https://management.azure.com`. From 8bde70547ebe429c82cbb7dda649f88be16e07fe Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:33:22 -0700 Subject: [PATCH 13/63] Update msal-dotnet-articles/advanced/managed-identity.md Co-authored-by: Neha Bhargava <61847233+neha-bhargava@users.noreply.github.com> --- msal-dotnet-articles/advanced/managed-identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/managed-identity.md b/msal-dotnet-articles/advanced/managed-identity.md index d090e5155..0d1150143 100644 --- a/msal-dotnet-articles/advanced/managed-identity.md +++ b/msal-dotnet-articles/advanced/managed-identity.md @@ -63,7 +63,7 @@ AuthenticationResult result = await mi.AcquireTokenForManagedIdentity(resource) ### User-assigned managed identities -For user-assigned managed identities, the developer needs to pass the managed identity client id or object id or the full resource identifier string if client ID is not available when creating . +For user-assigned managed identities, the developer needs to pass either the client ID, full resource identifier, or the object ID of the managed identity when creating . Like in the case for system-assigned managed identities, is called with the resource to acquire a token for, such as `https://management.azure.com`. From fbb5b211faf3bd3bef0de1ca9bfc063f6524f445 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Tue, 18 Jul 2023 02:16:04 +0000 Subject: [PATCH 14/63] CI Update Build.Reason:Manual by Den Delimarsky Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=373949&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- ...oftIdentity_Pages_Account_AccessDenied.xml | 10 ++ ..._MicrosoftIdentity_Pages_Account_Error.xml | 10 ++ ...rosoftIdentity_Pages_Account_SignedOut.xml | 10 ++ ...eas_MicrosoftIdentity_Pages__ViewStart.xml | 10 ++ .../msal-model-dotnet-latest.xml | 24 ++-- .../msal-web-dotnet-latest.xml | 44 ++++--- .../AcquireTokenOptions.xml | 16 +++ .../AcquireTokenResult.xml | 9 ++ .../AuthorizationHeaderProviderOptions.xml | 13 ++ .../CredentialDescription.xml | 122 ++++++++++++------ .../CredentialSource.xml | 12 ++ .../CredentialSourceLoaderParameters.xml | 6 +- .../CredentialType.xml | 5 + .../DownstreamApiOptions.xml | 8 ++ ...DownstreamApiOptionsReadOnlyHttpMethod.xml | 5 + .../IAuthorizationHeaderProvider.xml | 3 + .../ICredentialSourceLoader.xml | 3 + .../ICredentialsLoader.xml | 5 + .../IDownstreamApi.xml | 29 +++++ .../ITokenAcquirer.xml | 3 + .../ITokenAcquirerFactory.xml | 3 + .../IdentityApplicationOptions.xml | 11 ++ .../MicrosoftIdentityApplicationOptions.xml | 16 +++ .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 +- .../WebApiBuilders.xml | 2 + .../OwinTokenAcquirerFactory.xml | 4 + .../IJwtBearerMiddlewareDiagnostics.xml | 2 + .../IOpenIdConnectMiddlewareDiagnostics.xml | 2 + .../JwtBearerMiddlewareDiagnostics.xml | 3 + ...icrosoftIdentityIssuerValidatorFactory.xml | 3 + .../OpenIdConnectMiddlewareDiagnostics.xml | 3 + .../RequiredScopeAttribute.xml | 6 + .../RequiredScopeOrAppPermissionAttribute.xml | 7 + .../RolesRequiredHttpContextExtensions.xml | 2 + .../ScopesRequiredHttpContextExtensions.xml | 2 + .../DistributedTokenCacheAdapterExtension.xml | 2 + .../MsalDistributedTokenCacheAdapter.xml | 8 ++ ...salDistributedTokenCacheAdapterOptions.xml | 7 + .../InMemoryTokenCacheProviderExtension.xml | 2 + .../MsalMemoryTokenCacheOptions.xml | 3 + .../MsalMemoryTokenCacheProvider.xml | 6 + .../MsalSessionTokenCacheProvider.xml | 7 + .../SessionTokenCacheProviderExtension.xml | 3 + .../CacheSerializerHints.xml | 4 + .../IMsalTokenCacheProvider.xml | 4 + .../MsalAbstractTokenCacheProvider.xml | 14 ++ .../AccountController.xml | 7 + .../AccessDeniedModel.xml | 3 + .../ErrorModel.xml | 6 + .../SignedOutModel.xml | 3 + .../ServiceCollectionExtensions.xml | 2 + .../AadIssuerValidatorOptions.xml | 3 + .../AccountExtensions.xml | 2 + .../ApiControllerExtensions.xml | 4 + .../AppBuilderExtension.xml | 3 + ...ervicesAuthenticationBuilderExtensions.xml | 2 + .../AppServicesAuthenticationDefaults.xml | 2 + .../AppServicesAuthenticationHandler.xml | 3 + .../AppServicesAuthenticationInformation.xml | 3 + .../AppServicesAuthenticationOptions.xml | 2 + ...ServicesAuthenticationTokenAcquisition.xml | 9 ++ .../ApplicationBuilderExtensions.xml | 2 + .../AuthorizeForScopesAttribute.xml | 7 + ...ionsAuthenticationHttpContextExtension.xml | 2 + ...reIdentityForKubernetesClientAssertion.xml | 4 + .../BaseRequestExtensions.xml | 10 ++ .../CertificateDescription.xml | 13 ++ .../CertificateSource.xml | 7 + .../CertificatelessOptions.xml | 4 + .../Microsoft.Identity.Web/ClaimConstants.xml | 19 +++ .../ClaimsPrincipalExtensions.xml | 11 ++ .../ClaimsPrincipalFactory.xml | 3 + .../ClientAssertion.xml | 4 + .../ClientAssertionProviderBase.xml | 5 + .../xml/Microsoft.Identity.Web/Constants.xml | 13 ++ .../ControllerBaseExtensions.xml | 4 + .../CookiePolicyOptionsExtensions.xml | 4 + .../DefaultCertificateLoader.xml | 8 ++ .../DefaultCredentialsLoader.xml | 7 + .../DownstreamWebApi.xml | 5 + .../DownstreamWebApiExtensions.xml | 3 + .../DownstreamWebApiGenericExtensions.xml | 7 + .../DownstreamWebApiOptions.xml | 9 ++ .../GraphServiceCollectionExtensions.xml | 6 + .../IAuthRequiredScopeMetadata.xml | 3 + ...thRequiredScopeOrAppPermissionMetadata.xml | 5 + .../ICertificateLoader.xml | 2 + .../IDownstreamWebApi.xml | 7 + .../ILoginErrorAccessor.xml | 4 + ...AuthenticationDelegatingHandlerFactory.xml | 3 + .../ITokenAcquisition.xml | 13 ++ .../ManagedIdentityClientAssertion.xml | 3 + .../MicrosoftGraphExtensions.xml | 12 ++ .../MicrosoftGraphOptions.xml | 8 ++ ...dentityAppAuthenticationMessageHandler.xml | 3 + ...ityAppCallsWebApiAuthenticationBuilder.xml | 3 + ...lsWebApiAuthenticationBuilderExtension.xml | 2 + ...entityAuthenticationBaseMessageHandler.xml | 4 + ...osoftIdentityAuthenticationBaseOptions.xml | 9 ++ ...sageHandlerHttpClientBuilderExtensions.xml | 5 + ...ityAuthenticationMessageHandlerOptions.xml | 4 + ...osoftIdentityBaseAuthenticationBuilder.xml | 4 + ...ntityBlazorServiceCollectionExtensions.xml | 3 + ...tityConsentAndConditionalAccessHandler.xml | 7 + .../MicrosoftIdentityOptions.xml | 22 ++++ ...entityUserAuthenticationMessageHandler.xml | 3 + ...oftIdentityWebApiAuthenticationBuilder.xml | 2 + ...yWebApiAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebApiServiceCollectionExtensions.xml | 2 + ...oftIdentityWebAppAuthenticationBuilder.xml | 3 + ...yWebAppAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebAppServiceCollectionExtensions.xml | 2 + ...osoftIdentityWebChallengeUserException.xml | 5 + .../PolicyBuilderExtensions.xml | 4 + .../RequiredScopeExtensions.xml | 3 + ...RequiredScopeOrAppPermissionExtensions.xml | 3 + .../ScopeAuthorizationRequirement.xml | 5 + ...rAppPermissionAuthorizationRequirement.xml | 7 + .../ServiceCollectionExtensions.xml | 2 + .../TokenAcquirerAppTokenCredential.xml | 4 + .../TokenAcquirerFactory.xml | 13 ++ .../TokenAcquirerTokenCredential.xml | 4 + .../TokenAcquisitionAppTokenCredential.xml | 4 + .../TokenAcquisitionOptions.xml | 5 + .../TokenAcquisitionTokenCredential.xml | 4 + .../TokenCacheExtensions.xml | 4 + .../EventLogLevel.xml | 7 + .../IIdentityLogger.xml | 3 + .../ITelemetryClient.xml | 7 + .../LogEntry.xml | 5 + .../NullIdentityModelLogger.xml | 4 + .../NullTelemetryClient.xml | 8 ++ .../ObservabilityConstants.xml | 5 + .../TelemetryEventDetails.xml | 11 ++ .../JsonClaimValueTypes.xml | 4 + .../JsonWebToken.xml | 69 ++++++++-- .../JsonWebTokenHandler.xml | 37 ++++++ .../JwtConstants.xml | 11 ++ .../JwtHeaderParameterNames.xml | 48 ++++--- .../JwtRegisteredClaimNames.xml | 30 +++++ .../JwtTokenUtilities.xml | 8 ++ .../KeyVaultCryptoProvider.xml | 5 + .../KeyVaultKeyWrapProvider.xml | 8 ++ ...aultSecurityKey+AuthenticationCallback.xml | 1 + .../KeyVaultSecurityKey.xml | 6 + .../KeyVaultSignatureProvider.xml | 6 + .../ISafeLogSecurityArtifact.xml | 2 + .../IdentityModelEventSource.xml | 21 +++ .../IdentityModelTelemetryUtil.xml | 5 + .../LogHelper.xml | 28 ++++ .../LoggerContext.xml | 8 ++ .../TextWriterEventListener.xml | 7 + .../IdentityLoggerAdapter.xml | 4 + .../ManagedKeyVaultSecurityKey.xml | 4 + .../InvalidConfigurationException.xml | 5 + ...LastKnownGoodConfigurationCacheOptions.xml | 3 + .../OpenIdConnectConfigurationValidator.xml | 4 + .../ActiveDirectoryOpenIdConnectEndpoints.xml | 4 + .../IdTokenValidator.xml | 1 + .../OpenIdConnectConfiguration.xml | 99 ++++++++++++++ .../OpenIdConnectConfigurationRetriever.xml | 6 + .../OpenIdConnectGrantTypes.xml | 5 + .../OpenIdConnectMessage.xml | 56 ++++++++ .../OpenIdConnectParameterNames.xml | 43 ++++++ .../OpenIdConnectPrompt.xml | 5 + .../OpenIdConnectProtocolException.xml | 5 + ...dConnectProtocolInvalidAtHashException.xml | 5 + ...IdConnectProtocolInvalidCHashException.xml | 5 + ...IdConnectProtocolInvalidNonceException.xml | 5 + ...IdConnectProtocolInvalidStateException.xml | 5 + ...OpenIdConnectProtocolValidationContext.xml | 8 ++ .../OpenIdConnectProtocolValidator.xml | 27 ++++ .../OpenIdConnectRequestType.xml | 4 + .../OpenIdConnectResponseMode.xml | 4 + .../OpenIdConnectResponseType.xml | 11 +- .../OpenIdConnectScope.xml | 8 ++ .../OpenIdConnectSessionProperties.xml | 4 + .../OpenIdProviderMetadataNames.xml | 47 +++++++ .../CnfDecryptionKeysResolverAsync.xml | 1 + .../ConfirmationClaimTypes.xml | 16 ++- .../HttpClientProvider.xml | 1 + .../NonceValidatorAsync.xml | 1 + .../PopKeyResolverAsync.xml | 1 + .../PopKeyResolverFromKeyIdAsync.xml | 3 +- .../ReplayValidatorAsync.xml | 1 + .../SignatureValidatorAsync.xml | 1 + .../SignedHttpRequestClaimTypes.xml | 10 ++ .../SignedHttpRequestConstants.xml | 10 +- .../SignedHttpRequestCreationException.xml | 5 + .../SignedHttpRequestCreationParameters.xml | 13 ++ .../SignedHttpRequestDescriptor.xml | 15 ++- .../SignedHttpRequestHandler.xml | 7 + ...gnedHttpRequestInvalidAtClaimException.xml | 5 + ...ignedHttpRequestInvalidBClaimException.xml | 5 + ...nedHttpRequestInvalidCnfClaimException.xml | 5 + ...ignedHttpRequestInvalidHClaimException.xml | 5 + ...ignedHttpRequestInvalidMClaimException.xml | 5 + ...dHttpRequestInvalidNonceClaimException.xml | 6 + ...ignedHttpRequestInvalidPClaimException.xml | 5 + ...ignedHttpRequestInvalidPopKeyException.xml | 5 + ...ignedHttpRequestInvalidQClaimException.xml | 5 + ...edHttpRequestInvalidSignatureException.xml | 5 + ...gnedHttpRequestInvalidTsClaimException.xml | 5 + ...ignedHttpRequestInvalidUClaimException.xml | 5 + .../SignedHttpRequestUtilities.xml | 8 +- .../SignedHttpRequestValidationContext.xml | 10 ++ .../SignedHttpRequestValidationException.xml | 5 + .../SignedHttpRequestValidationParameters.xml | 33 ++++- .../SignedHttpRequestValidationResult.xml | 7 + ...SecurityTokenServiceTypeRoleDescriptor.xml | 30 ++++- .../WsFederationConfiguration.xml | 5 + .../WsFederationConfigurationRetriever.xml | 6 + .../WsFederationConfigurationValidator.xml | 73 +++++++++++ .../WsFederationConstants+Attributes.xml | 6 + .../WsFederationConstants+Elements.xml | 26 ++++ .../WsFederationConstants+KeyUse.xml | 2 + .../WsFederationConstants+Namespaces.xml | 1 + .../WsFederationConstants+Types.xml | 3 + ...ederationConstants+WsFederationActions.xml | 6 + ...rationConstants+WsFederationFaultCodes.xml | 12 ++ ...onConstants+WsFederationParameterNames.xml | 21 +++ .../WsFederationConstants.xml | 5 + .../WsFederationException.xml | 5 + .../WsFederationMessage.xml | 32 +++++ .../WsFederationMetadataSerializer.xml | 37 ++++++ .../WsFederationReadException.xml | 5 + .../AuthenticationProtocolMessage.xml | 14 ++ .../ConfigurationManager`1.xml | 15 +++ .../ConfigurationValidationResult.xml | 4 + .../FileDocumentRetriever.xml | 3 + .../HttpDocumentRetriever.xml | 9 ++ .../HttpRequestData.xml | 8 ++ .../IConfigurationManager`1.xml | 3 + .../IConfigurationRetriever`1.xml | 2 + .../IConfigurationValidator`1.xml | 2 + .../IDocumentRetriever.xml | 2 + .../StaticConfigurationManager`1.xml | 5 + .../X509CertificateValidationMode.xml | 2 + .../TestTokenCreator.xml | 25 ++++ .../LKGConfigurationCacheOptions.xml | 7 + .../AuthenticationInformation.xml | 9 ++ .../ClaimProperties.xml | 9 ++ .../SamlAction.xml | 5 + .../SamlAdvice.xml | 7 + .../SamlAssertion.xml | 14 ++ .../SamlAttribute.xml | 9 ++ .../SamlAttributeKeyComparer+AttributeKey.xml | 5 + .../SamlAttributeKeyComparer.xml | 4 + .../SamlAttributeStatement.xml | 4 + .../SamlAudienceRestrictionCondition.xml | 4 + .../SamlAuthenticationStatement.xml | 7 + .../SamlAuthorityBinding.xml | 5 + .../SamlAuthorizationDecisionStatement.xml | 8 ++ .../SamlCondition.xml | 2 + .../SamlConditions.xml | 6 + .../SamlConstants+AccessDecision.xml | 4 + .../SamlConstants+AuthenticationMethods.xml | 13 ++ .../SamlConstants+Types.xml | 26 ++++ .../SamlConstants.xml | 18 +++ .../SamlDoNotCacheCondition.xml | 2 + .../SamlEvidence.xml | 6 + .../SamlSecurityToken.xml | 10 ++ .../SamlSecurityTokenException.xml | 5 + .../SamlSecurityTokenHandler.xml | 49 +++++++ .../SamlSecurityTokenReadException.xml | 5 + .../SamlSecurityTokenWriteException.xml | 5 + .../SamlSerializer.xml | 34 +++++ .../SamlStatement.xml | 2 + .../SamlSubject.xml | 12 ++ .../SamlSubjectStatement.xml | 3 + .../AuthenticationInformation.xml | 8 ++ .../ClaimProperties.xml | 8 ++ .../Saml2Action.xml | 4 + .../Saml2Advice.xml | 5 + .../Saml2Assertion.xml | 14 ++ .../Saml2Attribute.xml | 10 ++ .../Saml2AttributeStatement.xml | 5 + .../Saml2AudienceRestriction.xml | 4 + .../Saml2AuthenticationContext.xml | 7 + .../Saml2AuthenticationStatement.xml | 8 ++ .../Saml2AuthorizationDecisionStatement.xml | 7 + .../Saml2Conditions.xml | 8 ++ .../Saml2Constants+AccessDecision.xml | 4 + .../Saml2Constants+Attributes.xml | 27 ++++ .../Saml2Constants+ConfirmationMethods.xml | 7 + .../Saml2Constants+Elements.xml | 34 +++++ .../Saml2Constants+NameIdentifierFormats.xml | 19 +++ .../Saml2Constants+Types.xml | 24 ++++ .../Saml2Constants.xml | 7 + .../Saml2Evidence.xml | 8 ++ .../Saml2Id.xml | 4 + .../Saml2NameIdentifier.xml | 9 ++ .../Saml2ProxyRestriction.xml | 4 + .../Saml2SecurityToken.xml | 9 ++ .../Saml2SecurityTokenException.xml | 5 + .../Saml2SecurityTokenHandler.xml | 52 ++++++++ .../Saml2SecurityTokenReadException.xml | 5 + .../Saml2SecurityTokenWriteException.xml | 5 + .../Saml2Serializer.xml | 46 +++++++ .../Saml2Statement.xml | 2 + .../Saml2Subject.xml | 5 + .../Saml2SubjectConfirmation.xml | 6 + .../Saml2SubjectConfirmationData.xml | 8 ++ .../Saml2SubjectLocality.xml | 4 + .../AlgorithmValidator.xml | 1 + .../AsymmetricSecurityKey.xml | 4 + .../AsymmetricSignatureProvider.xml | 13 ++ .../AudienceValidator.xml | 1 + .../AuthenticatedEncryptionProvider.xml | 13 ++ .../AuthenticatedEncryptionResult.xml | 6 + .../Base64UrlEncoder.xml | 6 + .../BaseConfiguration.xml | 31 ++++- .../BaseConfigurationManager.xml | 17 +++ .../CallContext.xml | 3 + .../CollectionUtilities.xml | 2 + .../CompressionAlgorithms.xml | 3 + .../CompressionProviderFactory.xml | 7 + .../CryptoProviderCache.xml | 7 + .../CryptoProviderCacheOptions.xml | 4 + .../CryptoProviderFactory.xml | 27 ++++ .../DateTimeUtil.xml | 6 + .../DeflateCompressionProvider.xml | 8 ++ .../ECDsaSecurityKey.xml | 8 ++ .../EcdhKeyExchangeProvider.xml | 4 + .../EncryptingCredentials.xml | 10 ++ .../EpochTime.xml | 4 + .../ICompressionProvider.xml | 5 + .../ICryptoProvider.xml | 4 + .../ISecurityTokenValidator.xml | 5 + .../ITokenReplayCache.xml | 3 + .../InMemoryCryptoProviderCache.xml | 10 ++ .../IssuerSigningKeyResolver.xml | 1 + ...erSigningKeyResolverUsingConfiguration.xml | 1 + .../IssuerSigningKeyValidator.xml | 1 + ...rSigningKeyValidatorUsingConfiguration.xml | 1 + .../IssuerValidator.xml | 1 + .../IssuerValidatorUsingConfiguration.xml | 1 + .../JsonWebAlgorithmsKeyTypes.xml | 6 +- .../JsonWebKey.xml | 35 +++++ .../JsonWebKeyConverter.xml | 8 ++ .../JsonWebKeyECTypes.xml | 7 +- .../JsonWebKeyParameterNames.xml | 26 ++++ .../JsonWebKeySet.xml | 9 ++ .../JsonWebKeySetParameterNames.xml | 2 + .../JsonWebKeyUseNames.xml | 5 +- .../KeyWrapProvider.xml | 9 ++ .../LifetimeValidator.xml | 1 + .../PrivateKeyStatus.xml | 4 + .../RsaKeyWrapProvider.xml | 9 ++ .../RsaSecurityKey.xml | 10 ++ .../SecurityAlgorithms.xml | 60 +++++++++ .../SecurityKey.xml | 9 ++ .../SecurityKeyIdentifierClause.xml | 2 + .../SecurityToken.xml | 9 ++ .../SecurityTokenArgumentException.xml | 5 + ...ecurityTokenCompressionFailedException.xml | 5 + ...urityTokenDecompressionFailedException.xml | 5 + ...SecurityTokenDecryptionFailedException.xml | 5 + .../SecurityTokenDescriptor.xml | 15 +++ ...SecurityTokenEncryptionFailedException.xml | 5 + ...ityTokenEncryptionKeyNotFoundException.xml | 5 + .../SecurityTokenException.xml | 6 + .../SecurityTokenExpiredException.xml | 7 + .../SecurityTokenHandler.xml | 15 +++ ...SecurityTokenInvalidAlgorithmException.xml | 7 + .../SecurityTokenInvalidAudienceException.xml | 7 + .../SecurityTokenInvalidIssuerException.xml | 7 + .../SecurityTokenInvalidLifetimeException.xml | 8 ++ ...SecurityTokenInvalidSignatureException.xml | 5 + ...ecurityTokenInvalidSigningKeyException.xml | 6 + .../SecurityTokenInvalidTypeException.xml | 7 + .../SecurityTokenKeyWrapException.xml | 5 + .../SecurityTokenMalformedException.xml | 5 + .../SecurityTokenNoExpirationException.xml | 5 + .../SecurityTokenNotYetValidException.xml | 7 + .../SecurityTokenReplayAddFailedException.xml | 5 + .../SecurityTokenReplayDetectedException.xml | 5 + ...rityTokenSignatureKeyNotFoundException.xml | 5 + ...SecurityTokenUnableToValidateException.xml | 8 ++ .../SecurityTokenValidationException.xml | 5 + .../SignatureProvider.xml | 12 ++ .../SignatureValidator.xml | 1 + .../SignatureValidatorUsingConfiguration.xml | 1 + .../SigningCredentials.xml | 10 ++ .../SymmetricKeyWrapProvider.xml | 10 ++ .../SymmetricSecurityKey.xml | 6 + .../SymmetricSignatureProvider.xml | 13 ++ .../TokenContext.xml | 3 + .../TokenDecryptionKeyResolver.xml | 1 + .../TokenHandler.xml | 9 ++ .../TokenReader.xml | 1 + .../TokenReplayValidator.xml | 1 + .../TokenValidationParameters.xml | 66 ++++++++++ .../TokenValidationResult.xml | 12 ++ .../TransformBeforeSignatureValidation.xml | 1 + .../TypeValidator.xml | 1 + .../UniqueId.xml | 6 + .../Utility.xml | 7 + .../ValidationFailure.xml | 4 + .../Validators.xml | 9 ++ .../X509EncryptingCredentials.xml | 4 + .../X509SecurityKey.xml | 14 ++ .../X509SigningCredentials.xml | 4 + .../AadIssuerValidator.xml | 4 + .../AadTokenValidationParametersExtension.xml | 48 +++++++ .../CanonicalizingTransfrom.xml | 6 + .../DSigElement.xml | 4 + .../DSigSerializer.xml | 17 +++ .../DelegatingXmlDictionaryReader.xml | 46 +++++++ .../DelegatingXmlDictionaryWriter.xml | 31 +++++ .../EnvelopedSignatureReader.xml | 7 + .../EnvelopedSignatureTransform.xml | 4 + .../EnvelopedSignatureWriter.xml | 10 ++ .../ExclusiveCanonicalizationTransform.xml | 5 + .../IXmlElementReader.xml | 4 + .../IssuerSerial.xml | 6 + .../Microsoft.IdentityModel.Xml/KeyInfo.xml | 10 ++ .../RSAKeyValue.xml | 6 + .../Microsoft.IdentityModel.Xml/Reference.xml | 12 ++ .../Microsoft.IdentityModel.Xml/Signature.xml | 8 ++ .../SignedInfo.xml | 8 ++ .../Microsoft.IdentityModel.Xml/Transform.xml | 4 + .../TransformFactory.xml | 7 + .../WsAddressing+Elements.xml | 3 + .../WsAddressing.xml | 3 + .../WsPolicy+Elements.xml | 2 + .../Microsoft.IdentityModel.Xml/WsPolicy.xml | 3 + .../WsTrustConstants+Elements.xml | 11 ++ .../WsTrustConstants+Namespaces.xml | 4 + .../WsTrustConstants.xml | 1 + .../WsTrustConstants_1_3+Actions.xml | 2 + .../WsTrustConstants_1_3.xml | 3 + .../WsTrustConstants_1_4+Actions.xml | 2 + .../WsTrustConstants_1_4.xml | 3 + .../WsTrustConstants_2005+Actions.xml | 2 + .../WsTrustConstants_2005.xml | 3 + .../WsUtility+Elements.xml | 3 + .../Microsoft.IdentityModel.Xml/WsUtility.xml | 3 + .../Microsoft.IdentityModel.Xml/X509Data.xml | 11 ++ .../XmlException.xml | 5 + .../XmlReadException.xml | 5 + .../XmlSignatureConstants+Attributes.xml | 9 ++ .../XmlSignatureConstants+Elements.xml | 29 +++++ .../XmlSignatureConstants.xml | 13 ++ .../XmlTokenStream.xml | 7 + .../XmlTokenStreamReader.xml | 4 + .../Microsoft.IdentityModel.Xml/XmlUtil.xml | 17 +++ .../XmlValidationException.xml | 5 + .../XmlWriteException.xml | 5 + .../msal-model-dotnet-latest.json | 2 +- .../msal-web-dotnet-latest.json | 2 +- .../Deserializer.xml | 1 + .../JsonClaimValueTypes.xml | 4 + .../JsonExtensions.xml | 7 + .../JwtConstants.xml | 8 ++ .../JwtHeader.xml | 25 ++++ .../JwtHeaderParameterNames.xml | 48 ++++--- .../JwtPayload.xml | 30 +++++ .../JwtRegisteredClaimNames.xml | 28 ++++ .../JwtSecurityToken.xml | 35 +++++ .../JwtSecurityTokenHandler.xml | 46 +++++++ .../Serializer.xml | 1 + 465 files changed, 4193 insertions(+), 141 deletions(-) create mode 100644 dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml create mode 100644 dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml index 6fba219c0..3ff1428dc 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml @@ -11,6 +11,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -61,6 +63,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -91,6 +94,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -116,6 +120,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -146,6 +151,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -176,6 +182,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel @@ -200,6 +207,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -230,6 +238,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -260,6 +269,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml index 3d6425c67..a6a9d112f 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml @@ -11,6 +11,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -61,6 +63,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -91,6 +94,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -116,6 +120,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -146,6 +151,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -176,6 +182,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel @@ -200,6 +207,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -230,6 +238,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -260,6 +269,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml index bf5ad5394..38a465f53 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml @@ -11,6 +11,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -61,6 +63,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -91,6 +94,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -116,6 +120,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -146,6 +151,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -176,6 +182,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel @@ -200,6 +207,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -230,6 +238,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -260,6 +269,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml index 040b873b3..c6b4eee53 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml @@ -11,6 +11,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.Razor.RazorPage<System.Object> @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -64,6 +66,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -94,6 +97,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -124,6 +128,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -154,6 +159,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -179,6 +185,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -209,6 +216,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -239,6 +247,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -269,6 +278,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml index ce3708003..ff6b129cf 100644 --- a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml @@ -1,19 +1,19 @@  - - - - - + + + + + - - - - - - - + + + + + + + diff --git a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml index 5cae635db..1e439f025 100644 --- a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml @@ -1,22 +1,22 @@  - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -492,6 +492,7 @@ + @@ -1020,6 +1021,7 @@ + @@ -1036,6 +1038,10 @@ + + + + @@ -1054,6 +1060,7 @@ + @@ -1151,6 +1158,7 @@ + @@ -1242,6 +1250,7 @@ + @@ -2797,6 +2806,9 @@ + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenOptions.xml b/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenOptions.xml index d0eecaa72..c368a083c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenOptions.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -35,6 +36,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -57,6 +59,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -81,6 +84,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -108,6 +112,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -135,6 +140,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -161,6 +167,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Nullable<System.Guid> @@ -186,6 +193,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -209,6 +217,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -235,6 +244,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean @@ -264,6 +274,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -294,6 +305,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -319,6 +331,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -344,6 +357,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -372,6 +386,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -400,6 +415,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenResult.xml b/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenResult.xml index 821e66be1..3bf13ac86 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenResult.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/AcquireTokenResult.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -35,6 +36,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -72,6 +74,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -99,6 +102,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Guid @@ -125,6 +129,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.DateTimeOffset @@ -152,6 +157,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -177,6 +183,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -203,6 +210,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -231,6 +239,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/AuthorizationHeaderProviderOptions.xml b/dotnet/xml/Microsoft.Identity.Abstractions/AuthorizationHeaderProviderOptions.xml index f70e32341..ef032f972 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/AuthorizationHeaderProviderOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/AuthorizationHeaderProviderOptions.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -35,6 +36,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -57,6 +59,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -82,6 +85,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -107,6 +111,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -132,6 +137,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -158,6 +164,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -184,6 +191,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Action<System.Net.Http.HttpRequestMessage> @@ -211,6 +219,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -237,6 +246,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -268,6 +278,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -299,6 +310,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -324,6 +336,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 2f5e6b3a7..9bf78f6b7 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -39,6 +40,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -59,6 +61,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -66,15 +69,18 @@ When is , specifies the base64 encoded value of the certificate. - + To be added. + To be added. + + - To be added. - To be added. + ]]> + @@ -90,6 +96,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -116,6 +123,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -144,6 +152,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -156,17 +165,17 @@ To be added. To be added. - + - + @@ -182,6 +191,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -193,18 +203,18 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: + The JSON fragment below describes a user certificate stored in the personal certificates folder (CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: :::code language="json" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_json"::: The code below describes programmatically in C#, a computer certificate in the personal certificates folder (LocalMachine/My). :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -220,6 +230,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -231,17 +242,17 @@ To be added. To be added. - + - + @@ -257,6 +268,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -270,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -289,6 +301,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -300,18 +313,18 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: + The JSON fragment below describes a user certificate stored in the personal certificates folder (CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: :::code language="json" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_json"::: The code below describes programmatically in C#, a computer certificate in the personal certificates folder (LocalMachine/My) accessed by its thumbprint. :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -327,6 +340,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -340,7 +354,7 @@ To be added. 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -370,14 +385,21 @@ Container in which to find the credential. You will normally not use this property directly. It could be used by property editors in tools or IDEs. Instead, use the properties that are specific to the . - If equals , then - the container is the Key Vault base URL.If equals , then - this value is not used.If equals , then - this value is the path on disk where to find the credential.If equals , - or , then - this value is the path to the credential in the cert store, for instance CurrentUser/My. + To be added. - To be added. + + + If equals , then + the container is the Key Vault base URL. + If equals , then + this value is not used. + If equals , then + this value is the path on disk where to find the credential. + If equals , + or , then + this value is the path to the credential in the cert store, for instance CurrentUser/My. + + @@ -393,19 +415,22 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialType - Describes the type of credentials, based on the . Returns: + Describes the type of credentials, based on the . + + To be added. + + Returns: when is , you will use this property to provide the certificate yourself. When is or or or or when is .when is or - or .when is . - To be added. - To be added. + or .when is . @@ -421,6 +446,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -437,7 +463,7 @@ To be added. 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -472,7 +499,7 @@ To be added. 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -505,17 +533,17 @@ To be added. To be added. - + - + @@ -531,6 +559,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -546,7 +575,7 @@ don't provide a managed identity client ID. 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -578,7 +608,20 @@ by property editors in tools or IDEs. Instead, use the properties that are specific to the . To be added. - To be added. + + + If equals , then + the reference is the name of the certificate in Key Vault (maybe the version?). + If equals , then + this value is the base 64 encoded certificate itself. + If equals , then + this value is the password to access the certificate (if needed). + If equals , + this value is the distinguished name. + If equals , + this value is the thumbprint. + + If equals , then the reference is the name of the certificate in Key Vault (maybe the version?). @@ -606,6 +649,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -624,7 +668,7 @@ AZURE_FEDERATED_TOKEN_FILE and AZURE_ACCESS_TOKEN_FILE. 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean @@ -673,6 +718,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSource.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSource.xml index 7d2695d5d..4ce9219d8 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSource.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSource.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Enum @@ -39,6 +40,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -75,6 +77,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -109,6 +112,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -134,6 +138,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -168,6 +173,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -203,6 +209,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -236,6 +243,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -271,6 +279,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -306,6 +315,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -332,6 +342,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -367,6 +378,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c873d5586..0821d268c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -21,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + @@ -38,6 +39,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -66,6 +68,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -91,6 +94,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialType.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialType.xml index 8f175ff3f..77fc255e0 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialType.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialType.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Enum @@ -36,6 +37,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialType @@ -61,6 +63,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialType @@ -85,6 +88,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialType @@ -109,6 +113,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialType diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptions.xml b/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptions.xml index 6a067f463..36c184cf7 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptions.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -65,6 +66,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -87,6 +89,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -112,6 +115,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.DownstreamApiOptions @@ -138,6 +142,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -163,6 +168,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Func<System.Net.Http.HttpContent,System.Object> @@ -189,6 +195,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -218,6 +225,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Func<System.Object,System.Net.Http.HttpContent> diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptionsReadOnlyHttpMethod.xml b/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptionsReadOnlyHttpMethod.xml index 18d631b79..eb7f90f46 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptionsReadOnlyHttpMethod.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/DownstreamApiOptionsReadOnlyHttpMethod.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.DownstreamApiOptions @@ -38,6 +39,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -65,6 +67,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.DownstreamApiOptionsReadOnlyHttpMethod @@ -91,6 +94,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.AuthorizationHeaderProviderOptions @@ -116,6 +120,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Net.Http.HttpMethod diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/IAuthorizationHeaderProvider.xml b/dotnet/xml/Microsoft.Identity.Abstractions/IAuthorizationHeaderProvider.xml index 612dd0c85..af2f74b8d 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/IAuthorizationHeaderProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/IAuthorizationHeaderProvider.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -32,6 +33,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.String> @@ -70,6 +72,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialSourceLoader.xml b/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialSourceLoader.xml index 32c7c3b26..bd3b6f841 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialSourceLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialSourceLoader.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -32,6 +33,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.CredentialSource @@ -57,6 +59,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialsLoader.xml b/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialsLoader.xml index 1ea10f497..082ae36dc 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialsLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/ICredentialsLoader.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -37,6 +38,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IDictionary<Microsoft.Identity.Abstractions.CredentialSource,Microsoft.Identity.Abstractions.ICredentialSourceLoader> @@ -63,6 +65,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -95,6 +98,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.CredentialDescription> @@ -130,6 +134,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/IDownstreamApi.xml b/dotnet/xml/Microsoft.Identity.Abstractions/IDownstreamApi.xml index 83ee292fe..0de31b3d9 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/IDownstreamApi.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/IDownstreamApi.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -32,6 +33,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -73,6 +75,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -121,6 +124,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -162,6 +166,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -207,6 +212,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -256,6 +262,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -303,6 +310,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -352,6 +360,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -434,6 +443,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -490,6 +500,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -552,6 +563,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -612,6 +624,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -678,6 +691,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -735,6 +749,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -797,6 +812,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -858,6 +874,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -924,6 +941,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -980,6 +998,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -1042,6 +1061,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -1102,6 +1122,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -1168,6 +1189,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -1224,6 +1246,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -1286,6 +1309,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -1346,6 +1370,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -1412,6 +1437,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -1468,6 +1494,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> @@ -1530,6 +1557,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task @@ -1590,6 +1618,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<TOutput> diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirer.xml b/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirer.xml index 7440eaa09..14be31e7a 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirer.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirer.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -32,6 +33,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.AcquireTokenResult> @@ -70,6 +72,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.AcquireTokenResult> diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirerFactory.xml index f7323851c..6a3763604 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/ITokenAcquirerFactory.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -32,6 +33,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -63,6 +65,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.ITokenAcquirer diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/IdentityApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Abstractions/IdentityApplicationOptions.xml index ee8a8bbe7..03cd360dd 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/IdentityApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/IdentityApplicationOptions.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Object @@ -39,6 +40,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -59,6 +61,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean @@ -90,6 +93,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -116,6 +120,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -161,6 +166,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -197,6 +203,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -248,6 +255,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -274,6 +282,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean @@ -301,6 +310,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -327,6 +337,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/MicrosoftIdentityApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Abstractions/MicrosoftIdentityApplicationOptions.xml index b73b4219a..6d41cc255 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/MicrosoftIdentityApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/MicrosoftIdentityApplicationOptions.xml @@ -10,6 +10,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 Microsoft.Identity.Abstractions.IdentityApplicationOptions @@ -35,6 +36,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 @@ -55,6 +57,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -82,6 +85,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -109,6 +113,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -136,6 +141,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -161,6 +167,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -186,6 +193,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -211,6 +219,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -238,6 +247,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -263,6 +273,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -291,6 +302,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -316,6 +328,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean @@ -348,6 +361,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -373,6 +387,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.String @@ -401,6 +416,7 @@ 3.1.0.0 3.2.0.0 3.2.1.0 + 4.0.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index f854ab767..42a800f98 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -35,8 +35,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index a012e714a..f793a7cf9 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -539,8 +539,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -594,8 +594,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml index 9e72048f9..070efd99c 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml @@ -17,6 +17,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -49,6 +50,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml index 31ea571bc..804a5dcf1 100644 --- a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenAcquirerFactory @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -99,6 +102,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml index 72f6dc8a4..fc235133a 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -30,6 +31,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml index c80d094e0..c7fcd6140 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -31,6 +32,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml index fa724b01d..646864eda 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -37,6 +38,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -65,6 +67,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml index 4e2b7e177..6fd2f28c2 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -59,6 +61,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.IdentityModel.Validators.AadIssuerValidator diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml index a676df44a..94cf5e0f4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -38,6 +39,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml index 89ec90809..12812232e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Attribute @@ -46,6 +47,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -75,6 +77,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -119,6 +122,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -143,6 +147,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -167,6 +172,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml index 42f8a59b9..4a00d37ca 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Attribute @@ -47,6 +48,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -76,6 +78,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -116,6 +119,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -141,6 +145,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -165,6 +170,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -197,6 +203,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml index e4c7be41f..f92f56cad 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -34,6 +35,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml index f85221ea7..736a3dc32 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -37,6 +38,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml index 7ec8eb159..4a062db8b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml index fbc4dcccd..99314c0a3 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -80,6 +82,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -115,6 +118,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -152,6 +156,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -186,6 +191,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -222,6 +228,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -257,6 +264,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml index f064b4b66..9cffb5ed4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -68,6 +70,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -100,6 +103,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -132,6 +136,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -162,6 +167,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.Caching.Memory.MemoryCacheOptions @@ -191,6 +197,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Func<System.Exception,System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml index 68b680e1b..473102f04 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml index 6489e6e3a..446426e7e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -67,6 +69,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml index a8959cc6f..70be8c5f8 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -74,6 +76,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -107,6 +110,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -141,6 +145,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -176,6 +181,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml index 2e32d4b29..5dcbcdc5c 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -51,6 +52,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -80,6 +82,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -103,6 +106,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -132,6 +136,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -163,6 +168,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -191,6 +197,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml index ebae192dc..a06a69b71 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -77,6 +79,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml index 975f00462..7157a1d76 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.CancellationToken @@ -95,6 +98,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Nullable<System.DateTimeOffset> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml index c0e90ae6f..67829018b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -73,6 +75,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -105,6 +108,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml index ff8783872..0a1f555e4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -48,6 +49,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -78,6 +80,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -113,6 +116,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -145,6 +149,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -181,6 +186,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -216,6 +222,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -249,6 +256,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -282,6 +290,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -315,6 +324,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Byte[]> @@ -350,6 +360,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -383,6 +394,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -418,6 +430,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -453,6 +466,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml index f7a4786e4..f8220679b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.Controller @@ -61,6 +62,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -91,6 +93,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -149,6 +152,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -195,6 +199,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -241,6 +246,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -296,6 +302,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml index 5a1a2ee36..59caafba5 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -48,6 +49,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml index 07b294bcd..76779be17 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -53,6 +54,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -82,6 +84,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.ILoginErrorAccessor @@ -112,6 +115,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -142,6 +146,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -172,6 +177,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml index 0f2b2efa3..a9fa16355 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -48,6 +49,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.IActionResult diff --git a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml index faaf607a6..a15bec688 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IMvcBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml index a841b285f..3860c00c6 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -32,6 +33,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -51,6 +53,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml index 4eca0fdf5..55a7b90b3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml index 2d380edb4..d149f5027 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -77,6 +79,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -110,6 +113,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml index d336b285d..10b495462 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Owin.IAppBuilder @@ -84,6 +86,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Owin.IAppBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml index 66dc177a7..694b13191 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.AuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml index cebb34a2e..47180c742 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml index 7bfbbd82d..96b0e8c35 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.AuthenticationHandler<Microsoft.Identity.Web.AppServicesAuthenticationOptions> @@ -36,6 +37,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -67,6 +69,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticateResult> diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml index aeebf1e40..20dccd4f9 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -57,6 +59,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml index d5ada144b..68082db32 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions @@ -32,6 +33,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml index 2076db8ca..a389f8519 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -37,6 +38,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -68,6 +70,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -104,6 +107,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -144,6 +148,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -180,6 +185,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -220,6 +226,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -250,6 +257,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -285,6 +293,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml index e9e4903c1..fcf8a9371 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Builder.IApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml index 7c710fcff..2af926d1a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Mvc.Filters.ExceptionFilterAttribute @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -59,6 +61,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -83,6 +86,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -110,6 +114,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -134,6 +139,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -158,6 +164,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml index 2584c27d8..cbef8de29 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.ValueTuple<System.Boolean,Microsoft.AspNetCore.Mvc.IActionResult>> diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml index 8016565aa..18847e490 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -39,6 +40,7 @@ Microsoft.Identity.Web.Certificateless 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -64,6 +66,7 @@ Microsoft.Identity.Web.Certificateless 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -96,6 +99,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml index 419d5dbf4..fc1582df5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml @@ -14,12 +14,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -49,12 +51,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 T @@ -100,12 +104,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 T @@ -150,12 +156,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 T @@ -201,12 +209,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml index c9a7661f4..2d9784cdd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.CredentialDescription @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -68,6 +70,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -97,6 +100,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -126,6 +130,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -159,6 +164,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -194,6 +200,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -227,6 +234,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -262,6 +270,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -297,6 +306,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -335,6 +345,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateDescription @@ -372,6 +383,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -401,6 +413,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml index f59f2cdd0..37f5317a0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Enum @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -70,6 +72,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -98,6 +101,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -126,6 +130,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -154,6 +159,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource @@ -182,6 +188,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificateSource diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml index 21681c772..05c8bb041 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -67,6 +69,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -97,6 +100,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml index 6c083855d..13fc5c837 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -71,6 +73,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -99,6 +102,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -127,6 +131,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -155,6 +160,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -183,6 +189,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -211,6 +218,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -239,6 +247,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -267,6 +276,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -295,6 +305,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -323,6 +334,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -351,6 +363,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -379,6 +392,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -407,6 +421,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -435,6 +450,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -463,6 +479,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -492,6 +509,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -521,6 +539,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml index 2de606543..10f3a6521 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -77,6 +79,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -110,6 +113,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -143,6 +147,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -176,6 +181,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -209,6 +215,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -242,6 +249,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -275,6 +283,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -308,6 +317,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -341,6 +351,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml index db6bba09c..8e091a5e6 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Claims.ClaimsPrincipal @@ -81,6 +83,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml index b71d70dc8..fd8d6bcc8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -76,6 +78,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Nullable<System.DateTimeOffset> @@ -105,6 +108,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml index c99ce0b65..5337e0088 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -67,6 +69,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Nullable<System.DateTimeOffset> @@ -96,6 +99,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> @@ -129,6 +133,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.Identity.Web/Constants.xml b/dotnet/xml/Microsoft.Identity.Web/Constants.xml index 0723128d9..9588255a5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/Constants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/Constants.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -101,6 +104,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -130,6 +134,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -159,6 +164,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -188,6 +194,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -216,6 +223,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -245,6 +253,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -274,6 +283,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -302,6 +312,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -331,6 +342,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -359,6 +371,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml index 982042255..c16518a93 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -77,6 +79,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -110,6 +113,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml index a12b8718c..c7e2fc032 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -65,6 +67,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions @@ -97,6 +100,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml index dc460097c..70ad2604e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.DefaultCredentialsLoader @@ -57,6 +58,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -77,6 +79,7 @@ Microsoft.Identity.Web.Certificate 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -106,6 +109,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<System.Security.Cryptography.X509Certificates.X509Certificate2> @@ -139,6 +143,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -175,6 +180,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -207,6 +213,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -240,6 +247,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml index a8f78f2df..9e55fad92 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -46,6 +47,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ Microsoft.Identity.Web.Certificate 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -98,6 +101,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IDictionary<Microsoft.Identity.Abstractions.CredentialSource,Microsoft.Identity.Abstractions.ICredentialSourceLoader> @@ -131,6 +135,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task @@ -168,6 +173,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.CredentialDescription> @@ -205,6 +211,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml index a0b1f2944..16ba7e283 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -47,6 +48,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -80,6 +82,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -116,6 +119,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -154,6 +158,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml index 2296ac006..f542e2bcf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -80,6 +82,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml index 951e92af9..aa88e2ab8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -99,6 +101,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -162,6 +165,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -229,6 +233,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -301,6 +306,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -366,6 +372,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml index 8be659fcd..693d0bf49 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -37,6 +38,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -56,6 +58,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -80,6 +83,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.DownstreamWebApiOptions @@ -105,6 +109,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Action<System.Net.Http.HttpRequestMessage> @@ -131,6 +136,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -156,6 +162,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Net.Http.HttpMethod @@ -180,6 +187,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -207,6 +215,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml index a274a552b..8a7ec4768 100644 --- a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml @@ -14,12 +14,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -50,12 +52,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -89,12 +93,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml index d210157a4..9bbf66d21 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -32,6 +33,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -56,6 +58,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml index aced6075a..45d8ffc65 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -32,6 +33,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -57,6 +59,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -81,6 +84,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -106,6 +110,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml index ac5fd44eb..1c4c836ed 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -51,6 +52,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml index ca0485cc0..a6df3913d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -40,6 +41,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -77,6 +79,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -117,6 +120,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -159,6 +163,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -204,6 +209,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -289,6 +295,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml index ac482b3b0..2c08f5167 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -31,6 +32,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -59,6 +61,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -83,6 +86,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml index 336e7e54d..eac8be708 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -31,6 +32,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Net.Http.DelegatingHandler @@ -65,6 +67,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Net.Http.DelegatingHandler diff --git a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml index 35a1d4508..b5d86561a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -35,6 +36,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -78,6 +80,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -119,6 +122,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -165,6 +169,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.String> @@ -208,6 +213,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -251,6 +257,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -292,6 +299,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -337,6 +345,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -385,6 +394,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -415,6 +425,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -449,6 +460,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -486,6 +498,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml index e50f429b3..3f3893776 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml index d87ca2619..c2d7b7dc7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml @@ -9,12 +9,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -40,12 +42,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -82,12 +86,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -118,12 +124,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -156,12 +164,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -194,12 +204,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml index 9f3f9a3b8..589347ce7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml @@ -14,12 +14,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -48,12 +50,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -78,12 +82,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -115,12 +121,14 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftGraphBeta 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml index ba9c6c1a3..7c1fbc9b4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -61,6 +63,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml index b4959917a..c6405775f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -74,6 +76,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml index 5bdb05d65..60a568e9b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -34,6 +35,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml index 0fcf0fa85..853415528 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Net.Http.DelegatingHandler @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -61,6 +63,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -89,6 +92,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.ITokenAcquisition diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml index f62059fdf..54c282719 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -32,6 +33,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -53,6 +55,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -78,6 +81,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -103,6 +107,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -131,6 +136,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -156,6 +162,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -182,6 +189,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -206,6 +214,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml index 1cf92e835..b9c1df80f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -71,6 +73,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder @@ -103,6 +106,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -141,6 +145,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml index fd9ad6a70..e20a93cdd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -36,6 +37,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -55,6 +57,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -83,6 +86,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml index ba5820f61..498da6b27 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -44,6 +45,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -81,6 +83,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.Configuration.IConfigurationSection @@ -111,6 +114,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml index 6b92133e0..855ce1683 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServerSideBlazorBuilder @@ -62,6 +64,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml index 7655f3a32..86b4f26db 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -34,6 +35,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -58,6 +60,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -82,6 +85,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -118,6 +122,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -146,6 +151,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -170,6 +176,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml index c8c96146b..24346d64f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -99,6 +102,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -140,6 +144,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -167,6 +172,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.CertificatelessOptions @@ -196,6 +202,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -225,6 +232,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -254,6 +262,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -283,6 +292,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -312,6 +322,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -341,6 +352,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -370,6 +382,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -402,6 +415,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -433,6 +447,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -462,6 +477,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean @@ -497,6 +513,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -526,6 +543,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -555,6 +573,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -596,6 +615,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -623,6 +643,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -653,6 +674,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml index 37a25d9c6..3486921b7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -63,6 +65,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml index 6f4d7997b..8d20ab6ca 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml index 649c834a5..23bdc34de 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -76,6 +78,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -121,6 +124,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml index 3373dfb7e..f9cd2c099 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityWebApiAuthenticationBuilder @@ -39,6 +40,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml index 0f9b07dc4..31dca3845 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml index 3fe155a4a..29dd0b061 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -67,6 +69,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml index 7c9ff50d3..e44abd4de 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -78,6 +80,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -126,6 +129,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml index d88aa31b7..45b143040 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.MicrosoftIdentityWebAppAuthenticationBuilder @@ -34,6 +35,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml index e65d36c9a..994c9cc0f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml index 4ba168419..e29ee02a2 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Exception @@ -45,6 +46,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -78,6 +80,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Client.MsalUiRequiredException @@ -107,6 +110,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String[] @@ -136,6 +140,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml index 4ddb29045..7a65b99c1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -41,6 +42,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -110,6 +113,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml index f0d0fb89b..6bb94902b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -62,6 +64,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml index a9e2ac7ad..2f81fba34 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -33,6 +34,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -63,6 +65,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml index 5df0f2efb..775ca862f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -39,6 +40,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -63,6 +65,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -87,6 +90,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -111,6 +115,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml index 105f372a8..cd73acf29 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -39,6 +40,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -65,6 +67,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -89,6 +92,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -113,6 +117,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -137,6 +142,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -161,6 +167,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml index 46ba57ed7..f092c9f26 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -43,6 +44,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml index 65dfe8127..b18422410 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml @@ -7,6 +7,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 Azure.Core.TokenCredential @@ -29,6 +30,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 @@ -51,6 +53,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 Azure.Core.AccessToken @@ -78,6 +81,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml index 2e647ae06..86e5bb8e1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -46,6 +47,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -72,6 +74,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.IServiceProvider @@ -111,6 +114,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.Configuration.IConfiguration @@ -141,6 +145,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.String @@ -175,6 +180,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -220,6 +226,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -277,6 +284,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -312,6 +320,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -344,6 +353,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -382,6 +392,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Void @@ -411,6 +422,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.IServiceProvider @@ -441,6 +453,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Extensions.DependencyInjection.ServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml index 209667c41..b4900a640 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml @@ -7,6 +7,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 Azure.Core.TokenCredential @@ -29,6 +30,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 @@ -51,6 +53,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 Azure.Core.AccessToken @@ -78,6 +81,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml index 9d2588958..a34eff63c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Azure.Core.TokenCredential @@ -39,6 +40,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -63,6 +65,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Azure.Core.AccessToken @@ -92,6 +95,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml index 81cf12872..91b85e6ab 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -42,6 +43,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -66,6 +68,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.CancellationToken @@ -95,6 +98,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -125,6 +129,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Client.AppConfig.PoPAuthenticationConfiguration diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml index 9beed676f..a912c1a72 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml @@ -9,6 +9,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Azure.Core.TokenCredential @@ -39,6 +40,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 @@ -63,6 +65,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Azure.Core.AccessToken @@ -92,6 +95,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml index 2dba49688..377e90e6d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml @@ -14,6 +14,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 System.Object @@ -45,6 +46,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -98,6 +100,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -141,6 +144,7 @@ 2.11.0.0 2.11.1.0 2.12.4.0 + 2.13.0.0 Microsoft.Identity.Client.IConfidentialClientApplication diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml index 2a7d47c56..2d9442fc8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Enum @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -92,6 +95,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -171,6 +177,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml index fce635109..638015808 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml index 6ed961fdf..bb85cd25d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -161,6 +166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -191,6 +197,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml index 3014ccbe8..de7146332 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml index ab32117eb..1f4da2cfb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger @@ -73,6 +75,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -106,6 +109,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml index 7b9ead469..782cd804a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -46,6 +47,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -75,6 +77,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -101,6 +104,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.NullTelemetryClient @@ -131,6 +135,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -161,6 +166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -226,6 +233,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml index de1b1106b..ff88f9c0b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml index fed16e021..61f85c282 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object> @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -210,6 +217,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -243,6 +251,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -276,6 +285,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -309,6 +319,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml index d7138224e..fc30a80ce 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml index ccd57fcef..2ea6a6b8a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -79,6 +81,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -116,6 +119,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -147,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -182,6 +187,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -216,6 +222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -250,6 +257,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -284,6 +292,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -316,6 +325,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,8 +337,8 @@ To be added. Used by JWS applications to declare the media type[IANA.MediaTypes] of the secured content (the payload). - see: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-12 (JWE) - see: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-10 (JWS) + see: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.12 (JWE) + see: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.10 (JWS) If the 'cty' claim is not found, an empty string is returned. @@ -351,6 +361,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -363,7 +374,7 @@ Identifies the content encryption algorithm used to perform authenticated encryption on the plaintext to produce the ciphertext and the Authentication Tag. - see: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-2 + see: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.2 @@ -384,6 +395,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -415,6 +427,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -446,6 +459,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -478,6 +492,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -509,6 +524,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -543,6 +559,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.Claim @@ -581,6 +598,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -623,6 +641,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -665,6 +684,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -676,7 +696,7 @@ To be added. Provides a unique identifier for the JWT. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-7 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.7 If the 'jti' claim is not found, an empty string is returned. @@ -699,6 +719,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -733,6 +754,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -767,6 +789,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -796,6 +819,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -825,6 +849,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -836,7 +861,7 @@ To be added. Identifies the time at which the JWT was issued. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-6 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.6 If the 'iat' claim is not found, then is returned. @@ -859,6 +884,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -870,7 +896,7 @@ To be added. Identifies the principal that issued the JWT. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-1 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.1 If the 'iss' claim is not found, an empty string is returned. @@ -893,6 +919,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -904,8 +931,8 @@ To be added. 'kid'is a hint indicating which key was used to secure the JWS. - see: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-4 (JWS) - see: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-6 (JWE) + see: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.4 (JWS) + see: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.6 (JWE) If the 'kid' claim is not found, an empty string is returned. @@ -928,6 +955,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -957,6 +985,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -988,6 +1017,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -998,7 +1028,7 @@ To be added. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-2 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.2 Identifies the principal that is the subject of the JWT. If the 'sub' claim is not found, an empty string is returned. @@ -1015,6 +1045,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.String @@ -1045,6 +1076,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1084,6 +1116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1127,6 +1160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1170,6 +1204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1211,6 +1246,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1222,7 +1258,7 @@ To be added. Is used by JWT applications to declare the media type. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-5-1 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-5.1 If the 'typ' claim is not found, an empty string is returned. @@ -1238,6 +1274,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.String @@ -1267,6 +1304,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -1278,7 +1316,7 @@ To be added. Identifies the time before which the JWT MUST NOT be accepted for processing. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-5 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.5 If the 'nbf' claim is not found, then is returned. @@ -1301,6 +1339,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -1312,7 +1351,7 @@ To be added. Identifies the expiration time on or after which the JWT MUST NOT be accepted for processing. - see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-4 + see: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.4 If the 'exp' claim is not found, then is returned. @@ -1335,6 +1374,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1346,7 +1386,7 @@ To be added. Is the base64url-encoded SHA-1 thumbprint(a.k.a.digest) of the DER encoding of the X.509 certificate used to sign this token. - see : https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-7 + see: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.7 If the 'x5t' claim is not found, an empty string is returned. @@ -1369,6 +1409,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1380,7 +1421,7 @@ To be added. The "zip" (compression algorithm) applied to the plaintext before encryption, if any. - see: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-3 + see: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.3 If the 'zip' claim is not found, an empty string is returned. diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml index 0dee2b83a..42a3f39d7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -137,6 +141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -166,6 +171,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -201,6 +207,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -238,6 +245,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -271,6 +279,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -305,6 +314,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -340,6 +350,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -376,6 +387,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -412,6 +424,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -452,6 +465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -489,6 +503,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -527,6 +542,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -567,6 +583,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -609,6 +626,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -649,6 +667,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -693,6 +712,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -739,6 +759,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -772,6 +793,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -793,6 +815,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.Boolean @@ -821,6 +844,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -859,6 +883,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -899,6 +924,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -940,6 +966,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -976,6 +1003,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -999,6 +1027,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1028,6 +1057,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -1068,6 +1098,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1105,6 +1136,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1135,6 +1167,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 + 6.32.0.0 System.String @@ -1165,6 +1198,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -1195,6 +1229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -1225,6 +1260,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1259,6 +1295,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml index 231925df4..a067532c2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -127,6 +131,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -212,6 +219,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -241,6 +249,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -270,6 +279,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -298,6 +308,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml index aee27cc98..058128f9d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.ValueType @@ -43,13 +44,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.1 To be added. @@ -71,13 +73,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.2 To be added. @@ -99,13 +102,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.3 To be added. @@ -127,14 +131,15 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-10 - Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5-2 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.10 + Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5.2 To be added. @@ -156,13 +161,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.2 To be added. @@ -184,13 +190,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.1 To be added. @@ -212,13 +219,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-7-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.7.1.1 To be added. @@ -240,13 +248,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.2 To be added. @@ -268,13 +277,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.3 To be added. @@ -296,13 +306,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-4 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.4 To be added. @@ -324,14 +335,15 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-9 - Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5-1 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.9 + Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5.1 To be added. @@ -353,13 +365,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-6 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.6 To be added. @@ -381,6 +394,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -409,13 +423,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-5 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.5 To be added. @@ -437,13 +452,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.3 To be added. diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml index 6c073ec10..4a93d9137 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.ValueType @@ -45,6 +46,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -73,6 +75,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -127,6 +131,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -211,6 +218,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -239,6 +247,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -267,6 +276,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -295,6 +305,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -323,6 +334,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -379,6 +392,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -407,6 +421,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -435,6 +450,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -463,6 +479,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -491,6 +508,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -519,6 +537,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -547,6 +566,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -573,6 +593,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -601,6 +622,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -629,6 +651,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -657,6 +680,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -685,6 +709,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -711,6 +736,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -739,6 +765,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -767,6 +794,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -795,6 +823,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -821,6 +850,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml index ddb9a9b2f..b8463d48e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml @@ -14,6 +14,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -141,6 +145,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -174,6 +179,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -207,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Text.RegularExpressions.Regex @@ -235,6 +242,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Text.RegularExpressions.Regex diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml index a020990de..71dc708c4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -114,6 +117,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -157,6 +161,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml index 899ed6cf5..feb574fe4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -181,6 +187,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -213,6 +220,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml index eee0d6bb7..e32f4dafd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml index 0cb2baa9b..7d506e469 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -92,6 +95,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey+AuthenticationCallback @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -146,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml index 855143433..8847cd79f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -72,6 +74,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -135,6 +139,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -171,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml index a7d2f1efb..da9c98564 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 + 6.32.0.0 @@ -28,6 +29,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml index f61a0076f..09519cd09 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Diagnostics.Tracing.EventSource @@ -45,6 +46,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -72,6 +74,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -94,6 +97,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 + 6.32.0.0 System.Boolean @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Logging.IdentityModelEventSource @@ -148,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Diagnostics.Tracing.EventLevel @@ -175,6 +181,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -202,6 +209,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -246,6 +254,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -299,6 +308,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -336,6 +346,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -381,6 +392,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -417,6 +429,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -462,6 +475,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -498,6 +512,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -543,6 +558,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -579,6 +595,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -624,6 +641,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -660,6 +678,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -705,6 +724,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -741,6 +761,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml index c888443da..26766f3e3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -72,6 +74,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml index d83ebd467..f3cdf768d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -147,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -196,6 +201,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -245,6 +251,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -301,6 +308,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -352,6 +360,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -410,6 +419,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -468,6 +478,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -528,6 +539,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.ArgumentNullException @@ -559,6 +571,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -604,6 +617,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -651,6 +665,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -698,6 +713,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -752,6 +768,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -801,6 +818,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -857,6 +875,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -913,6 +932,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -971,6 +991,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -1002,6 +1023,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -1035,6 +1057,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Abstractions.IIdentityLogger @@ -1062,6 +1085,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1101,6 +1125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1140,6 +1165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1179,6 +1205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -1208,6 +1235,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 + 6.32.0.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml index 432357a82..c00692cb8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Guid @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -171,6 +177,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -198,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml index 5809fe57f..086c9831c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Diagnostics.Tracing.EventListener @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -142,6 +147,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -169,6 +175,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml index 496ba5f13..280afdf92 100644 --- a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -73,6 +75,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -106,6 +109,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml index 1636a475a..46d331c95 100644 --- a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml index 0ddb44024..1b21d679d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 + 6.32.0.0 System.Exception @@ -34,6 +35,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 + 6.32.0.0 @@ -53,6 +55,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 + 6.32.0.0 @@ -75,6 +78,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 + 6.32.0.0 @@ -99,6 +103,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml index 79d55f2aa..86ed3de74 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml @@ -11,6 +11,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml index 4320a126a..39849bcec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml index 67eeac84e..c9c7c9a17 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml index 00518f9c3..cb8eda13c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml index c8b82ec39..9673a06e7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -102,6 +106,28 @@ To be added. + + + + + + + Property + + Microsoft.IdentityModel.Protocols.OpenIdConnect + 6.32.0.0 + + + System.String + + + + This base class property is not used in OpenIdConnect. + + To be added. + To be added. + + @@ -117,6 +143,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -144,6 +171,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -171,6 +199,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -198,6 +227,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -225,6 +255,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -252,6 +283,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -279,6 +311,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -306,6 +339,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration @@ -340,6 +374,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -367,6 +402,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -394,6 +430,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +458,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -448,6 +486,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -475,6 +514,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -502,6 +542,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -529,6 +570,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -556,6 +598,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -583,6 +626,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -610,6 +654,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -637,6 +682,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -664,6 +710,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -691,6 +738,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -717,6 +765,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -744,6 +793,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -771,6 +821,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -798,6 +849,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -825,6 +877,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -852,6 +905,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -879,6 +933,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -906,6 +961,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -933,6 +989,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -960,6 +1017,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -987,6 +1045,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1014,6 +1073,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -1041,6 +1101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -1068,6 +1129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -1095,6 +1157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1122,6 +1185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1158,6 +1222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1194,6 +1259,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1230,6 +1296,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1266,6 +1333,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1302,6 +1370,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1338,6 +1407,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1374,6 +1444,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1410,6 +1481,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1446,6 +1518,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1482,6 +1555,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1518,6 +1592,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1554,6 +1629,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1590,6 +1666,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1626,6 +1703,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1662,6 +1740,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1698,6 +1777,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1734,6 +1814,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1770,6 +1851,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1806,6 +1888,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1842,6 +1925,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1878,6 +1962,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1914,6 +1999,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1950,6 +2036,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1986,6 +2073,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -2022,6 +2110,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -2049,6 +2138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2076,6 +2166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -2103,6 +2194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2130,6 +2222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2157,6 +2250,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2184,6 +2278,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -2211,6 +2306,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2238,6 +2334,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2265,6 +2362,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -2292,6 +2390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml index 4139ac2c7..43fa1fe60 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -134,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -173,6 +178,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml index e4d540543..870dc1343 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml index e7e9f560b..a5b84ba39 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -204,6 +211,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +239,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -258,6 +267,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -285,6 +295,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -312,6 +323,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -339,6 +351,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -366,6 +379,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -393,6 +407,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -420,6 +435,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -448,6 +464,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -475,6 +492,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -503,6 +521,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -531,6 +550,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -558,6 +578,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -585,6 +606,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -613,6 +635,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -640,6 +663,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -667,6 +691,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -694,6 +719,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -721,6 +747,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -748,6 +775,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -775,6 +803,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -802,6 +831,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -829,6 +859,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -856,6 +887,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -883,6 +915,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -910,6 +943,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -937,6 +971,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -964,6 +999,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -991,6 +1027,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1018,6 +1055,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1045,6 +1083,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1072,6 +1111,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1099,6 +1139,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -1126,6 +1167,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1153,6 +1195,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1180,6 +1223,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1207,6 +1251,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1234,6 +1279,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1261,6 +1307,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1288,6 +1335,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1315,6 +1363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1342,6 +1391,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1369,6 +1419,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1396,6 +1447,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1423,6 +1475,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1450,6 +1503,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1477,6 +1531,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1504,6 +1559,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml index a3ca2e149..081fd668b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -303,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -375,6 +390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -399,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -423,6 +440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -447,6 +465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -471,6 +490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -495,6 +515,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -519,6 +540,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -543,6 +565,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -567,6 +590,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -591,6 +615,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -615,6 +640,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -639,6 +665,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -663,6 +690,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -687,6 +715,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -711,6 +740,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -735,6 +765,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -759,6 +790,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -783,6 +815,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -807,6 +840,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -831,6 +865,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -855,6 +890,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -879,6 +915,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -903,6 +940,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -927,6 +965,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -951,6 +990,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -975,6 +1015,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -999,6 +1040,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1023,6 +1065,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml index 8533b2060..8e020af23 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml index 31835d764..408f2c6c9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml index 76611a0ed..03efd2aaf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml index 9a9760313..b818e2b4c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml index b0f1c2ab8..ecdc57fb6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml index 73299fdd9..23dc0adf3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml index 3e148331e..3450ee9be 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -170,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -197,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml index f871a98c1..7f1a86489 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.HashAlgorithm @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -204,6 +211,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.IdTokenValidator @@ -231,6 +239,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -259,6 +268,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -292,6 +302,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -325,6 +336,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -358,6 +370,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -391,6 +404,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -424,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -457,6 +472,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -490,6 +506,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -523,6 +540,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -550,6 +568,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -584,6 +603,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -616,6 +636,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -648,6 +669,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -680,6 +702,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -710,6 +733,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -743,6 +767,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -775,6 +800,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -807,6 +833,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml index b5acedc65..77089bc94 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Enum @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -92,6 +95,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml index 25f298c02..34393a20f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml index 98b30895a..5356dd736 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -230,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -237,7 +246,7 @@ Defined in OAuth 2.0 spec, included for completion. - See: https://datatracker.ietf.org/doc/html/rfc6749#section-11-3-2. + See: https://datatracker.ietf.org/doc/html/rfc6749#section-11.3.2. To be added. diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml index 9e7019ad9..a3707e575 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -171,6 +177,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -197,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml index c0ac07253..663e85452 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml index c5e877da0..ab6acb272 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -112,6 +116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -136,6 +141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -160,6 +166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -184,6 +191,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -208,6 +216,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -232,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -256,6 +266,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -280,6 +291,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -304,6 +316,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -328,6 +341,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -352,6 +366,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -376,6 +391,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -400,6 +416,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -424,6 +441,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -448,6 +466,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -472,6 +491,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -496,6 +516,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -520,6 +541,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -544,6 +566,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -568,6 +591,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -592,6 +616,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -616,6 +641,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -640,6 +666,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -664,6 +691,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -688,6 +716,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -712,6 +741,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -736,6 +766,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -760,6 +791,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -784,6 +816,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -808,6 +841,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -832,6 +866,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -856,6 +891,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -880,6 +916,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -904,6 +941,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -928,6 +966,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -952,6 +991,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -976,6 +1016,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1000,6 +1041,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1024,6 +1066,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1048,6 +1091,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1072,6 +1116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1096,6 +1141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1120,6 +1166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml index 481a1660d..0966694d8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml index 33c7a984e..e55bd4826 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,13 +41,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - https://datatracker.ietf.org/doc/html/rfc7800#section-6-1-1 + https://datatracker.ietf.org/doc/html/rfc7800#section-6.1.1 To be added. @@ -66,13 +68,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - https://datatracker.ietf.org/doc/html/rfc7800#section-6-2-2 + https://datatracker.ietf.org/doc/html/rfc7800#section-6.2.2 To be added. @@ -92,13 +95,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - https://datatracker.ietf.org/doc/html/rfc7800#section-6-2-2 + https://datatracker.ietf.org/doc/html/rfc7800#section-6.2.2 To be added. @@ -118,13 +122,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - https://datatracker.ietf.org/doc/html/rfc7800#section-6-2-2 + https://datatracker.ietf.org/doc/html/rfc7800#section-6.2.2 To be added. @@ -144,13 +149,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - https://datatracker.ietf.org/doc/html/rfc7800#section-6-2-2 + https://datatracker.ietf.org/doc/html/rfc7800#section-6.2.2 To be added. diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml index 95746f326..f23f36289 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml index 7ccff6074..bdeab9957 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml index d378d6099..450772881 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml index dc2447796..85d0dbefd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate @@ -36,6 +37,6 @@ A delegate that will be called to resolve a from a 'cnf' claim that contains only the 'kid' claim. A resolved . - https://datatracker.ietf.org/doc/html/rfc7800#section-3-4 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.4 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml index f41ad53d0..abcee2333 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml index ea13510f9..b1bdd4477 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml index 4f42a4ab2..5075bc7cc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -169,6 +175,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -195,6 +202,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -221,6 +229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -247,6 +256,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml index ab3bcd8de..3063a7ca1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -47,7 +49,7 @@ The "Authorization" header string. - https://datatracker.ietf.org/doc/html/rfc7235#section-4-2 + https://datatracker.ietf.org/doc/html/rfc7235#section-4.2 @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -73,7 +76,7 @@ Authorization header scheme name. - https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-4-1 + https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-4.1 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,7 +103,7 @@ SignedHttpRequest token type. - https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-6-1 + https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-6.1 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml index 71bcb9760..0f9b52996 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml index efc677686..5baa45041 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -171,6 +177,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -198,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -225,6 +233,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -252,6 +261,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -279,6 +289,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -306,6 +317,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -332,6 +344,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml index c25fb90a8..957f01921 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -54,7 +56,7 @@ has to contain the 'cnf' claim so that PoP key can be resolved on the validation side. - https://datatracker.ietf.org/doc/html/rfc7800#section-3-1 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.1 Default and will be created. @@ -74,6 +76,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,7 +94,7 @@ has to contain the 'cnf' claim so that PoP key can be resolved on the validation side. - https://datatracker.ietf.org/doc/html/rfc7800#section-3-1 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.1 @@ -110,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -137,6 +141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -166,6 +171,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -224,6 +231,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -251,6 +259,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -278,6 +287,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestCreationParameters @@ -305,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml index 656fb58b8..c73c1f092 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationResult> @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.SecurityToken> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml index fb3c87d6b..f05652785 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml index e563507d1..e84a97e41 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml index cdd7cc065..9df8334d3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml index 83381542f..7da574d1f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml index ccf5ee392..9e9878a0a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml index 4e4fe8deb..ad99e399c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml index cae4242a1..8b94ee8d0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml index 298e24d19..1220e38d2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml index 01528ee26..bb47c152b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml index 97207e61d..820752c2f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml index 023e18a40..7dec9f5be 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml index e366aa7b2..9ac76edbf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml index fb101aff8..bf9489c31 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -52,7 +54,7 @@ Creates a "jwk" claim from a JsonWebKey representation of an asymmetric public key. A "jwk" claim as a JSON string. - https://datatracker.ietf.org/doc/html/rfc7800#section-3-2 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.2 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -83,7 +86,7 @@ Creates an authorization header using the SignedHttpRequest. A SignedHttpRequest value prefixed with the word "PoP". - https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-4-1 + https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-4.1 @@ -101,6 +104,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.HttpRequestData> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml index e4224c768..803b568aa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -103,6 +106,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -136,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -171,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -198,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CallContext @@ -225,6 +232,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -252,6 +260,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationParameters diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml index f7141da26..3b3182449 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml index 7db628dde..dde938706 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -69,7 +72,7 @@ Gets or sets a value indicating whether the unsigned headers are accepted or not. To be added. - https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-5-1 + https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-5.1 @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -96,7 +100,7 @@ Gets or sets a value indicating whether the unsigned query parameters are accepted or not. To be added. - https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-5-1 + https://datatracker.ietf.org/doc/html/draft-ietf-oauth-signed-http-request-03#section-5.1 @@ -114,6 +118,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -170,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.CnfDecryptionKeysResolverAsync @@ -197,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -223,6 +231,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.HttpClientProvider @@ -232,7 +241,7 @@ Gets or sets the delegate. To be added. - https://datatracker.ietf.org/doc/html/rfc7800#section-3-5 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.5 @@ -250,6 +259,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.NonceValidatorAsync @@ -277,6 +287,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverAsync @@ -304,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverFromKeyIdAsync @@ -331,6 +343,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.ReplayValidatorAsync @@ -358,6 +371,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -367,7 +381,7 @@ Gets or sets a value indicating whether TLS is required when obtaining a JWK set using the 'jku' claim. To be added. - https://datatracker.ietf.org/doc/html/rfc7800#section-3-5 + https://datatracker.ietf.org/doc/html/rfc7800#section-3.5 @@ -385,6 +399,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignatureValidatorAsync @@ -412,6 +427,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -439,6 +455,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -466,6 +483,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -493,6 +511,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -520,6 +539,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -547,6 +567,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -574,6 +595,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -603,6 +625,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -630,6 +653,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -657,6 +681,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml index 0de4c03e3..72519de68 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -114,6 +118,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -141,6 +146,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -168,6 +174,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml index 7beb3b5f9..48c110ef5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -45,6 +47,29 @@ To be added. + + + + + + + Property + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 + + + System.String + + + + Active Requestor Token Endpoint + fed:SecurityTokenServiceType, http://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html#:~:text=fed%3ASecurityTokenSerivceEndpoint + + To be added. + To be added. + + @@ -60,6 +85,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.List<Microsoft.IdentityModel.Xml.KeyInfo> @@ -87,13 +113,15 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - Token endpoint + Passive Requestor Token endpoint + fed:PassiveRequestorEndpoint, https://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html#:~:text=fed%3ASecurityTokenServiceType/fed%3APassiveRequestorEndpoint To be added. To be added. diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml index 918b0d3b9..3b88b6ea4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Signature @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml index d580ffa2a..eb7fd5598 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -136,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -175,6 +180,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml new file mode 100644 index 000000000..4d04cc98f --- /dev/null +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml @@ -0,0 +1,73 @@ + + + + + + + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 + + + System.Object + + + + Microsoft.IdentityModel.Protocols.IConfigurationValidator<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> + + + + + Defines a class for validating the WsFederationConfiguration. + + To be added. + + + + + + + + Constructor + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 + + + + To be added. + To be added. + + + + + + + + + Method + + M:Microsoft.IdentityModel.Protocols.IConfigurationValidator`1.Validate(`0) + + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 + + + Microsoft.IdentityModel.Protocols.ConfigurationValidationResult + + + + + + WsFederationConfiguration to validate + + Validates a WsFederationConfiguration. + + A containing the validation result. + To be added. + If the provided configuration is null + + + + diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml index 648fed8ea..ba9550654 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml index b7c24d29f..9ddb5fd0c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,26 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 + + + System.String + + + To be added. + To be added. + + + + + + + + + Field + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 System.String @@ -159,6 +184,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml index 934d2165c..f5e8f62b2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml index de41d7988..8deb5e6aa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml index d57fe91be..2d55c92d1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml index 4da6c012c..bead7e0c8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml index 2eb0bf9f0..d8ea33cef 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml index b65355cd5..c323ac2c6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -303,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -375,6 +390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -399,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -423,6 +440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -447,6 +465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -471,6 +490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -495,6 +515,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml index 07fb1b0d2..67037695b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -20,6 +21,7 @@ Constants for WsFederation. + As defined in the http://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html To be added. @@ -39,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml index 3201fa1dd..4396a78e8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml index 45d22c2b8..14a294b59 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -172,6 +178,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -235,6 +243,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -264,6 +273,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -293,6 +303,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -320,6 +331,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -347,6 +359,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -374,6 +387,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -401,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -428,6 +443,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -455,6 +471,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -482,6 +499,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -509,6 +527,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -536,6 +555,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -563,6 +583,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -590,6 +611,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -617,6 +639,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -644,6 +667,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -671,6 +695,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -698,6 +723,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -725,6 +751,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -752,6 +779,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -779,6 +807,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -806,6 +835,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -833,6 +863,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -860,6 +891,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml index e9afd8352..e9a85f845 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -212,6 +219,34 @@ if error occurs when reading PassiveRequestorEndpoint + + + + + + + Method + + Microsoft.IdentityModel.Protocols.WsFederation + 6.32.0.0 + + + System.String + + + + + + + used to read SecurityTokenServiceEndpoint. + + Read fed:SecurityTokenServiceEndpoint element from metadata XML. + + Active token endpoint string + To be added. + If an error occurs while reading the SecurityTokenServiceEndpoint + + @@ -227,6 +262,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.SecurityTokenServiceTypeRoleDescriptor @@ -262,6 +298,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml index 4029dcd43..657f5a592 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml index 6e37b2f45..9f2346675 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -150,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -178,6 +184,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -205,6 +212,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -233,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -264,6 +273,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -292,6 +302,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -320,6 +331,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -348,6 +360,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -381,6 +394,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml index 0514e53f9..499d5a5fa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -51,6 +52,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -80,6 +82,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -112,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -142,6 +146,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -176,6 +181,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -209,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -245,6 +252,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -271,6 +279,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -297,6 +306,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -328,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<T> @@ -359,6 +370,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<T> @@ -390,6 +402,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -416,6 +429,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -445,6 +459,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml index bf94519f1..66a838252 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml index 511529c9e..3f222ec19 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml index 0cbb61c67..49c9dc061 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<System.String> @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -212,6 +219,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -239,6 +247,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml index 4dc6370e7..78e75e135 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Collections.Generic.IEnumerable<System.String>> @@ -144,6 +149,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -171,6 +177,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -198,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml index 2104ea80e..1b6a8cd3c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<T> @@ -80,6 +82,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml index 98a9918d2..f49a32a96 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<T> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml index 17cdeaa41..36574a94a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml index 322c881c0..e97150008 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml index 05d635ade..d6ae35524 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -52,6 +53,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -79,6 +81,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -114,6 +117,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<T> @@ -149,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml index 88aed645b..92ed9ba2f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml index afae8e031..0722b18db 100644 --- a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -58,6 +60,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -83,6 +86,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -161,6 +167,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -190,6 +197,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -216,6 +224,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -245,6 +254,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -274,6 +284,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenDescriptor @@ -300,6 +311,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -326,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -352,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -378,6 +392,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -404,6 +419,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -430,6 +446,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -456,6 +473,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -482,6 +500,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -508,6 +527,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -534,6 +554,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -560,6 +581,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -586,6 +608,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -612,6 +635,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -637,6 +661,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml index 8a3309e7b..65527bd5b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml @@ -10,6 +10,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -35,6 +36,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -55,6 +57,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -80,6 +83,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -104,6 +108,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -129,6 +134,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -154,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.TaskCreationOptions diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml index c3db5697e..3a781a85f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -230,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml index c2f84525a..4a8e0cca1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml index 75f7e898f..307c2d8f8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -127,6 +131,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml index 79ae9bd6c..314393ba2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -180,6 +186,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml index 5bd66e2b7..b14ff43ec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -77,6 +79,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -106,6 +109,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +137,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -160,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -215,6 +222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -242,6 +250,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -269,6 +278,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -298,6 +308,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Signature @@ -354,6 +366,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -381,6 +394,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml index 4b83d5801..f0a8329a4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -72,6 +74,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -103,6 +106,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -130,6 +134,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -185,6 +191,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -212,6 +219,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -239,6 +247,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml index 060d91252..42d578963 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -129,6 +133,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml index 016139637..e114e192f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml index f3f77e941..112923270 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml index f2604b5bb..824bc49e7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml index 2a6c2d677..b713db01d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -77,6 +79,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -104,6 +107,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -132,6 +136,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml index 4374a7cc7..eb4adf107 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlQualifiedName @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml index e3707e854..e3296659e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -74,6 +76,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -111,6 +114,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAction> @@ -138,6 +142,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -165,6 +170,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -192,6 +198,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -219,6 +226,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml index 3e61250ef..8a6f48b02 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml index 643382d30..9f64b4881 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlCondition> @@ -127,6 +131,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml index a379e7bcf..401ee0e20 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml index 4b03b3e8c..f936e7aee 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -86,6 +89,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -110,6 +114,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -134,6 +139,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -158,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -182,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -206,6 +214,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -230,6 +239,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -254,6 +264,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -278,6 +289,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -302,6 +314,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml index 92fc21859..e574865ba 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -229,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -253,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -277,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -301,6 +313,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -349,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -373,6 +388,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -397,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -445,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -469,6 +488,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -493,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +538,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -541,6 +563,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +588,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -589,6 +613,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -613,6 +638,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml index 68926dd00..6783d44b8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String[] @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -303,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -375,6 +390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -399,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -423,6 +440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml index 2cc74b520..0c6c5ca6a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml index ebdaf5055..4de47e918 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -129,6 +133,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -156,6 +161,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml index c2e07ceef..4ac235231 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -170,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -197,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -224,6 +232,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -251,6 +260,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml index 3cd60d803..630962188 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml index 74973e8e3..147fd2929 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -214,6 +221,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> @@ -247,6 +255,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -278,6 +287,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -313,6 +323,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -350,6 +361,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -386,6 +398,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -417,6 +430,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -453,6 +467,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -485,6 +500,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> @@ -527,6 +543,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -566,6 +583,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -598,6 +616,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -632,6 +651,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -664,6 +684,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -700,6 +721,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -735,6 +757,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -769,6 +792,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -803,6 +827,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -839,6 +864,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -875,6 +901,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -908,6 +935,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -941,6 +969,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -974,6 +1003,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1006,6 +1036,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1040,6 +1071,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1077,6 +1109,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.Saml.SamlSubject> @@ -1104,6 +1137,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSerializer @@ -1132,6 +1166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1169,6 +1204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -1196,6 +1232,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1232,6 +1269,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1267,6 +1305,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1304,6 +1343,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1338,6 +1378,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1372,6 +1413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1410,6 +1452,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -1452,6 +1495,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1489,6 +1533,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1526,6 +1571,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1558,6 +1604,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1594,6 +1641,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1627,6 +1675,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml index 9f080ef3b..2a565ec88 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml index b2441b086..1271b696a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml index 4dd2fcb4b..b28d90e55 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAction @@ -148,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -187,6 +193,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -219,6 +226,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -255,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -288,6 +297,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAudienceRestrictionCondition @@ -321,6 +331,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -354,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding @@ -385,6 +397,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -418,6 +431,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -449,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -483,6 +498,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlDoNotCacheCondition @@ -514,6 +530,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -545,6 +562,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -581,6 +599,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -612,6 +631,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -645,6 +665,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -678,6 +699,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -712,6 +734,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -746,6 +769,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -780,6 +804,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -814,6 +839,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -847,6 +873,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -881,6 +908,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -915,6 +943,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -948,6 +977,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -981,6 +1011,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1014,6 +1045,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1048,6 +1080,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1081,6 +1114,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml index 3ba83b3f3..ef65f05fe 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml index 41240197e..bae085349 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -132,6 +136,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -213,6 +220,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -240,6 +248,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -267,6 +276,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -294,6 +304,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -321,6 +332,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml index 07b5ca5cb..9331c867c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml index 0e6851457..828b75eec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml index e51f09ad5..1192786e1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml index ca3ad3f86..ee9daa73b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -101,6 +104,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml index 3c3d3eb22..f1cda2100 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -120,6 +124,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml index 8e7e66275..cc4eb404b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -123,6 +127,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -151,6 +156,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -179,6 +185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -206,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -233,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -261,6 +270,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Signature @@ -288,6 +298,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -315,6 +326,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -342,6 +354,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -369,6 +382,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml index e1f782794..bb0d26a44 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -128,6 +132,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -210,6 +217,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -238,6 +246,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -265,6 +274,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml index 90eaa32b1..1c70a6248 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml index 6eb80b345..96e12bd5d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml index 7cd8a5fc0..a4b177c11 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -47,6 +48,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -127,6 +131,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.Uri> @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml index d2033cc7a..160849622 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -182,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -212,6 +219,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml index a3531a69a..6eb6b4d70 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -72,6 +74,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -104,6 +107,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Action> @@ -132,6 +136,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +164,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -187,6 +193,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml index b9014d30d..f00752bbf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction> @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -179,6 +185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -207,6 +214,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml index 16e9297ea..580b0189f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml index 5a4f2a477..bb73abfdb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -229,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -253,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -277,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -301,6 +313,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -349,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -373,6 +388,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -397,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -445,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -469,6 +488,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -493,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +538,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -541,6 +563,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +588,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -589,6 +613,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -613,6 +638,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -637,6 +663,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml index 5a50a50f4..7e878e165 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -114,6 +118,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -138,6 +143,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -165,6 +171,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml index 4cdb6ae30..9d55d34de 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -229,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -253,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -277,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -301,6 +313,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -349,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -373,6 +388,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -397,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -445,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -469,6 +488,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -493,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +538,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -541,6 +563,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +588,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -589,6 +613,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -613,6 +638,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -637,6 +663,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -661,6 +688,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -685,6 +713,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -709,6 +738,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -733,6 +763,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -757,6 +788,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -781,6 +813,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -805,6 +838,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml index 59d2cc4a7..de2913437 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -175,6 +181,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -199,6 +206,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -227,6 +235,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -251,6 +260,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -280,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -304,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -332,6 +344,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -356,6 +369,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -383,6 +397,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -407,6 +422,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -434,6 +450,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -458,6 +475,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -486,6 +504,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml index f807ed3f3..8c13f3259 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -229,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -253,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -277,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -301,6 +313,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -349,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -373,6 +388,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -397,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -445,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -469,6 +488,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -493,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +538,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -541,6 +563,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +588,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml index 3cc2ddb64..9aca6ea3d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String[] @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml index e0e076bb9..364756418 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -181,6 +187,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -208,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml index 548bda7fd..5a0983289 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml index 7e436fe87..4369368e9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -182,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -210,6 +217,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -238,6 +246,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml index cdfeca63e..a747b8384 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.Uri> @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.Int32> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml index 4586e9040..33e161a0b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -148,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -175,6 +181,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -202,6 +209,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -229,6 +237,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml index 80c40f250..67ce24f3a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml index e0c70f915..ee148e2a8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> @@ -235,6 +243,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -269,6 +278,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -302,6 +312,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -335,6 +346,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -367,6 +379,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -398,6 +411,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -429,6 +443,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -465,6 +480,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -514,6 +530,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -547,6 +564,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -584,6 +602,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -623,6 +642,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -655,6 +675,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -687,6 +708,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -721,6 +743,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -747,6 +770,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -783,6 +807,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -819,6 +844,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -853,6 +879,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -887,6 +914,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -922,6 +950,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -955,6 +984,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -988,6 +1018,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1021,6 +1052,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1053,6 +1085,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1087,6 +1120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1124,6 +1158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Serializer @@ -1152,6 +1187,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1191,6 +1227,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -1218,6 +1255,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1254,6 +1292,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1289,6 +1328,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1323,6 +1363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1360,6 +1401,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1394,6 +1436,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1432,6 +1475,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1465,6 +1509,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1507,6 +1552,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1541,6 +1587,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1582,6 +1629,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1620,6 +1668,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1652,6 +1701,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1686,6 +1736,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1719,6 +1770,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml index 196d681fe..e79fa79a9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml index 0d7216b7e..5a76c7298 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml index 2a0edba97..fe37f136d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Action @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -190,6 +196,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -224,6 +231,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -261,6 +269,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -294,6 +303,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -328,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction @@ -361,6 +372,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -396,6 +408,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -428,6 +441,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -461,6 +475,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -495,6 +510,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -528,6 +544,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -559,6 +576,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -590,6 +608,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -622,6 +641,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -656,6 +676,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction @@ -691,6 +712,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -727,6 +749,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -762,6 +785,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation @@ -793,6 +817,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData @@ -827,6 +852,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality @@ -858,6 +884,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -890,6 +917,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -923,6 +951,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -958,6 +987,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -991,6 +1021,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1025,6 +1056,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1059,6 +1091,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1091,6 +1124,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1124,6 +1158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1158,6 +1193,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1191,6 +1227,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1225,6 +1262,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1258,6 +1296,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1291,6 +1330,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1324,6 +1364,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1356,6 +1397,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1392,6 +1434,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1424,6 +1467,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1456,6 +1500,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1491,6 +1536,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml index 4f8811f55..b99f35c39 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml index 03ff53138..e781186d5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml index e4f4e8861..ae0eaf419 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml index cd9ea7122..12c1d6cca 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -146,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -174,6 +180,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -202,6 +209,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml index efa829245..0357161e6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml index 03f49d228..f4900a86d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml index d2a06e8fc..4e7c1adb6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml index 415dee98e..3551c696d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -110,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -136,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -162,6 +167,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -192,6 +198,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.HashAlgorithmName @@ -227,6 +234,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -254,6 +262,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -281,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -314,6 +324,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -354,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -392,6 +404,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml index b89e69306..d96bc91ed 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml index ada483db0..8475051e4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -75,6 +77,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -129,6 +133,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -173,6 +178,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -199,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -229,6 +236,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -265,6 +273,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -305,6 +314,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -341,6 +351,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -374,6 +385,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -401,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml index 3081961d6..91bea5bd1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml index f8355e5b7..bb8ef986e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +137,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -167,6 +172,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml index 2c316061f..9f2771901 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -45,6 +47,29 @@ To be added. + + + + + + + Property + + Microsoft.IdentityModel.Tokens + 6.32.0.0 + + + System.String + + + + Gets or sets the token endpoint specified via the metadata endpoint. + This is the fed:SecurityTokenServiceType in WS-Federation, http://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html#:~:text=fed%3ASecurityTokenSerivceEndpoint + + To be added. + To be added. + + @@ -60,6 +85,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -113,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -140,6 +168,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -147,7 +176,7 @@ Gets or sets the token endpoint specified via the metadata endpoint. - This can be the fed:SecurityTokenServiceType in WS-Federation, http://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html#:~:text=fed%3ASecurityTokenSerivceEndpoint + This is the fed:PassiveRequestorEndpoint in WS-Federation, https://docs.oasis-open.org/wsfed/federation/v1.2/os/ws-federation-1.2-spec-os.html#:~:text=fed%3ASecurityTokenServiceType/fed%3APassiveRequestorEndpoint Or the token_endpoint in the OIDC metadata. To be added. diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml index 4e5801978..5e06c5f90 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -114,6 +118,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -140,6 +145,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -166,6 +172,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -192,6 +199,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -225,6 +233,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -252,6 +261,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -279,6 +289,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -306,6 +317,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -333,6 +345,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -359,6 +372,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -385,6 +399,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -412,6 +427,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -439,6 +455,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml index efc22c382..245d22258 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Logging.LoggerContext @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml index bf5eb18e8..0a46d7e61 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml index 60dab0867..a1c8ff218 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml index 3c54a1abb..fe35e7167 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -148,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CompressionProviderFactory @@ -175,6 +181,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml index 05add898d..aa59037e3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -196,6 +202,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml index 59c962014..419771a96 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml index bbe09f032..adc65a5f4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionProvider @@ -193,6 +199,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -236,6 +243,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -281,6 +289,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -321,6 +330,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -363,6 +373,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.HashAlgorithm @@ -400,6 +411,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.HashAlgorithm @@ -437,6 +449,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -477,6 +490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -518,6 +532,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -559,6 +574,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -585,6 +601,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ICryptoProvider @@ -614,6 +631,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -641,6 +659,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -674,6 +693,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -701,6 +721,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -736,6 +757,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -775,6 +797,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -806,6 +829,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -838,6 +862,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -870,6 +895,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -901,6 +927,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml index dc33267c9..1254f800e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -76,6 +78,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -107,6 +110,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -138,6 +142,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -170,6 +175,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml index 23cad2d84..54414f8bf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IO.Compression.CompressionLevel @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -222,6 +229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml index 4ef113d7d..c254c155a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.ECDsa @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -213,6 +220,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml index fb605106d..4f3608b85 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Tokens 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -31,6 +32,7 @@ Microsoft.IdentityModel.Tokens 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ Microsoft.IdentityModel.Tokens 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -91,6 +94,7 @@ Microsoft.IdentityModel.Tokens 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml index 98500ed84..0a8f5c5e9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -74,6 +76,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -107,6 +110,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -140,6 +144,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -167,6 +172,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -221,6 +228,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -248,6 +256,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -275,6 +284,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml index 0019df73b..3f6412e1a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int64 @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml index 40c3c80d1..e386b4f02 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml index 372812667..98650f4ca 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -78,6 +80,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -118,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml index 47e93fde9..b46894625 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml index f4900200d..de98bc4a1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml index 4c87098af..0fd0df39e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -156,6 +161,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -187,6 +193,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -223,6 +230,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -258,6 +266,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -298,6 +307,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml index 918c6571b..937f5893a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml index a3a1beeee..cf67cdf19 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml index 852d75b0d..413397e68 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml index b3aa648b4..0642731d1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml index 7c7cbc2bc..a78c677b0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml index cdd034a16..6cd2e0dab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml index e3d7dcbf3..de6bd2917 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -20,7 +21,7 @@ Constants for JsonWebAlgorithms "kty" Key Type (sec 6.1) - https://datatracker.ietf.org/doc/html/rfc7518#section-6-1 + https://datatracker.ietf.org/doc/html/rfc7518#section-6.1 To be added. @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml index 32058512b..e40e0d412 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -174,6 +180,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -202,6 +209,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -237,6 +245,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -264,6 +273,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -291,6 +301,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -318,6 +329,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -345,6 +357,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -372,6 +385,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -400,6 +414,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -427,6 +442,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -454,6 +470,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.String> @@ -481,6 +498,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -508,6 +526,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -535,6 +554,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -562,6 +582,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -589,6 +610,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.String> @@ -616,6 +638,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -643,6 +666,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -670,6 +694,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -697,6 +722,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -727,6 +753,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -757,6 +784,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -785,6 +813,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -812,6 +841,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -839,6 +869,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.String> @@ -866,6 +897,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -893,6 +925,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -920,6 +953,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -947,6 +981,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml index bbb154708..eba9dc3b7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -92,6 +95,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -123,6 +127,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -186,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -217,6 +224,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml index bc59da9a7..3417eb2f6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -20,7 +21,7 @@ Constants for JsonWebKey Elliptical Curve Types - https://datatracker.ietf.org/doc/html/rfc7518#section-6-2-1-1 + https://datatracker.ietf.org/doc/html/rfc7518#section-6.2.1.1 To be added. @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -112,6 +116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml index 1777baf21..2b38057e0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -303,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -375,6 +390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -399,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -423,6 +440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -447,6 +465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -471,6 +490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -495,6 +515,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -519,6 +540,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -543,6 +565,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -567,6 +590,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -591,6 +615,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -615,6 +640,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml index b0ac0c1fc..99da4231e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -185,6 +191,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -215,6 +222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.JsonWebKey> @@ -242,6 +250,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml index 641f2a22a..783f59983 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml index c2126ddae..b61a09937 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -20,7 +21,7 @@ Constants for JsonWebKeyUse (sec 4.2) - https://datatracker.ietf.org/doc/html/rfc7517#section-4-2 + https://datatracker.ietf.org/doc/html/rfc7517#section-4.2 To be added. @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml index 90187cbc2..18fb9f087 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -121,6 +125,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -147,6 +152,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -204,6 +211,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -235,6 +243,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml index accb6093f..91ef520f2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml index 3e3d2765a..4d0a8e2ac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Enum @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml index 32d2c6a12..f0b2f4168 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -215,6 +222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -250,6 +258,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml index 181a932b8..8e11b3903 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -215,6 +222,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.RSAParameters @@ -242,6 +250,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -270,6 +279,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.RSA diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml index cfe907cb0..6ca1b2c78 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -279,6 +290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -303,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -327,6 +340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -375,6 +390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -399,6 +415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -423,6 +440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -447,6 +465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -471,6 +490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -495,6 +515,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -519,6 +540,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -543,6 +565,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -567,6 +590,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -591,6 +615,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -615,6 +640,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -639,6 +665,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -663,6 +690,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -687,6 +715,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -711,6 +740,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -735,6 +765,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -759,6 +790,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -783,6 +815,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -807,6 +840,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -831,6 +865,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -855,6 +890,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -879,6 +915,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -903,6 +940,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -927,6 +965,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -951,6 +990,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -975,6 +1015,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -999,6 +1040,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1023,6 +1065,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1047,6 +1090,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1071,6 +1115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1095,6 +1140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1119,6 +1165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1143,6 +1190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1167,6 +1215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1191,6 +1240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1215,6 +1265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1239,6 +1290,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1263,6 +1315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1287,6 +1340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1311,6 +1365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1335,6 +1390,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1359,6 +1415,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1383,6 +1440,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1407,6 +1465,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1431,6 +1490,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml index 24219d6cd..e78484dc1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -119,6 +123,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -146,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -204,6 +211,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -231,6 +239,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml index 27047befa..24e96df5a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml index 45be59aaa..e9ff793de 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -171,6 +177,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 System.String @@ -198,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -225,6 +233,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml index 514bc66bb..a1c6f1fd4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 System.ArgumentException @@ -34,6 +35,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -53,6 +55,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -75,6 +78,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -99,6 +103,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml index a419dea14..4f532d313 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml index 81513cf76..e1243733e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml index fcf6c010f..9656c5bf6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml index e83f15934..bc1712bed 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -179,6 +185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -206,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -233,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -260,6 +269,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -287,6 +297,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -314,6 +325,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -341,6 +353,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -368,6 +381,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -398,6 +412,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml index 403a2a065..72700b957 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml index 294fbfc48..978eff536 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenDecryptionFailedException @@ -45,6 +46,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml index de3a36808..222c4984e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -154,6 +159,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml index 4e2411125..8bac03618 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -150,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml index 40e50a2bc..106f12d03 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -134,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -163,6 +168,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -191,6 +197,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKeyIdentifierClause @@ -226,6 +233,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -259,6 +267,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -291,6 +300,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -325,6 +335,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -355,6 +366,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -389,6 +401,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -423,6 +436,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -454,6 +468,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml index 9135f48d7..98d0a9437 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -184,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml index 64b6a7944..899bef129 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -184,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml index a0a93e564..4b8c8496c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -184,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml index 0306dada8..8ab9640c5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> @@ -180,6 +186,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -211,6 +218,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml index 8999604df..2fcf2ce5f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml index d98c110d7..85676c699 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -150,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml index 7ad3f7aa0..6b8f7b00f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -153,6 +158,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -184,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml index b600b1850..d3906fb10 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml index 13d3bb123..92b3b94ae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenArgumentException @@ -34,6 +35,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -53,6 +55,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -75,6 +78,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 @@ -99,6 +103,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml index f6cb4a3b4..4c92d1294 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml index dfdf94f7e..bc1370778 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -45,6 +46,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -123,6 +127,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -151,6 +156,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -182,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml index 0a4dab803..7fc35536c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml index 599576560..b912d3cca 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml index 56717b4d5..288ceed46 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml index ff7263800..ad748c534 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -56,6 +57,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -80,6 +82,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -107,6 +110,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -136,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -165,6 +170,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -194,6 +200,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -225,6 +232,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml index f982ebc82..a4dd5f850 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml index dc4ffb8c8..c6ab6e844 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -74,6 +76,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -101,6 +104,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -128,6 +132,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -157,6 +162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -183,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -213,6 +220,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -240,6 +248,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -271,6 +280,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -307,6 +317,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -352,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml index 3ec60e9cd..b81cdf469 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml index 495f0c441..31fc197c0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml index 6790ce255..6a82b4140 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -131,6 +135,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -164,6 +169,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -192,6 +198,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -219,6 +226,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -246,6 +254,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -273,6 +282,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml index 7bc41c24b..d234c378a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.SymmetricAlgorithm @@ -188,6 +194,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -221,6 +228,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -248,6 +256,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -283,6 +292,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml index 9e3a8265c..f9aad1b83 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -123,6 +127,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -150,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml index b74f4ca50..611d8f959 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -71,6 +73,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -105,6 +108,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -131,6 +135,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -161,6 +166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -197,6 +203,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -234,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -262,6 +270,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -294,6 +303,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -331,6 +341,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -369,6 +380,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -409,6 +421,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml index 970563115..3e83ebb15 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CallContext @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml index d39e73ff3..273ad8522 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml index 3205e9cca..ea1948c85 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -115,6 +119,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -182,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -207,6 +214,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -242,6 +250,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml index eaed96272..b4376d9ff 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml index ae8ca375d..076dccbca 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml index c77bc77b8..349060bd8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AlgorithmValidator @@ -146,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AudienceValidator @@ -177,6 +183,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +212,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -240,6 +248,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -268,6 +277,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.BaseConfigurationManager @@ -296,6 +306,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -331,6 +342,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -358,6 +370,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -385,6 +398,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -413,6 +427,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.TimeSpan @@ -439,6 +454,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -466,6 +482,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -500,6 +517,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -527,6 +545,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -555,6 +574,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -582,6 +602,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -609,6 +630,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolver @@ -640,6 +662,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolverUsingConfiguration @@ -674,6 +697,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -701,6 +725,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidator @@ -734,6 +759,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidatorUsingConfiguration @@ -769,6 +795,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerValidator @@ -802,6 +829,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.IssuerValidatorUsingConfiguration @@ -836,6 +864,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.LifetimeValidator @@ -867,6 +896,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -901,6 +931,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -936,6 +967,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -966,6 +998,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -995,6 +1028,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -1022,6 +1056,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1057,6 +1092,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1091,6 +1127,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1125,6 +1162,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1159,6 +1197,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1190,6 +1229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -1219,6 +1259,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1254,6 +1295,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureValidator @@ -1283,6 +1325,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SignatureValidatorUsingConfiguration @@ -1313,6 +1356,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1340,6 +1384,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenDecryptionKeyResolver @@ -1369,6 +1414,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -1396,6 +1442,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenReader @@ -1425,6 +1472,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ITokenReplayCache @@ -1452,6 +1500,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TokenReplayValidator @@ -1483,6 +1532,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TransformBeforeSignatureValidation @@ -1510,6 +1560,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1544,6 +1595,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.TypeValidator @@ -1577,6 +1629,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -1607,6 +1660,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1641,6 +1695,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1679,6 +1734,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1721,6 +1777,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1759,6 +1816,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1796,6 +1854,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1831,6 +1890,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1868,6 +1928,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -1903,6 +1964,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1931,6 +1993,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -1959,6 +2022,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1987,6 +2051,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -2015,6 +2080,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml index 576260030..42efa75be 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -170,6 +176,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -197,6 +204,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -224,6 +232,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -251,6 +260,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.CallContext @@ -278,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -305,6 +316,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml index 247044918..7ed7a85dc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml index c0d094e96..c22f1526e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml index c7b7c0bd8..7fdd9ba4b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Uri @@ -129,6 +133,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -158,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml index 67a7e809e..0e2751480 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -79,6 +81,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -110,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -136,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -167,6 +172,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -199,6 +205,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml index b4a82dad6..aed53e52f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Enum @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml index f8d6c3cd8..f67a5088b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -76,6 +78,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -113,6 +116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -151,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -187,6 +192,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -229,6 +235,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -268,6 +275,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -307,6 +315,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml index b7d485b0f..655d32163 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -102,6 +105,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml index 0acedaa91..ef758135a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -151,6 +156,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -179,6 +185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -211,6 +218,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -240,6 +248,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -274,6 +283,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -301,6 +311,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -328,6 +339,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -356,6 +368,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -383,6 +396,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml index b1a96a307..da633ab64 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -69,6 +71,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -99,6 +102,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml index 244e1ecf3..840912ca9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -77,6 +79,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -117,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml new file mode 100644 index 000000000..8176cbb83 --- /dev/null +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml @@ -0,0 +1,48 @@ + + + + + + + + Microsoft.IdentityModel.Validators + 6.32.0.0 + + + System.Object + + + + + A generic class for additional validation checks on issued by the Microsoft identity platform (AAD). + + To be added. + + + + + + + + + Method + + Microsoft.IdentityModel.Validators + 6.32.0.0 + + + System.Void + + + + + + The that are used to validate the token. + + Enables the validation of the issuer of the signing keys used by the Microsoft identity platform (AAD) against the issuer of the token. + + To be added. + + + + diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml index dbc36f551..79b6f6329 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -114,6 +118,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -141,6 +146,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml index c769a7935..895d907e0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml index ccebfafed..64891de30 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -149,6 +154,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -182,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -216,6 +223,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Reference @@ -251,6 +259,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Signature @@ -286,6 +295,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -319,6 +329,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -354,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -388,6 +400,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -415,6 +428,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -449,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -483,6 +498,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -517,6 +533,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml index dd64e8697..e7b9116c7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryReader @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -120,6 +124,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -147,6 +152,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -174,6 +180,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -201,6 +208,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -228,6 +236,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -259,6 +268,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -291,6 +301,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -328,6 +339,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -356,6 +368,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -383,6 +396,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryReader @@ -410,6 +424,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -438,6 +453,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -465,6 +481,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -496,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -528,6 +546,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +584,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -595,6 +615,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -622,6 +643,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -649,6 +671,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -681,6 +704,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -711,6 +735,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -742,6 +767,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -775,6 +801,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -803,6 +830,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -831,6 +859,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -859,6 +888,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -886,6 +916,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -913,6 +944,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlNameTable @@ -940,6 +972,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlNodeType @@ -967,6 +1000,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -994,6 +1028,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1022,6 +1057,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -1052,6 +1088,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -1087,6 +1124,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -1122,6 +1160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.ReadState @@ -1149,6 +1188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -1188,6 +1228,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1215,6 +1256,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryReader @@ -1242,6 +1284,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1269,6 +1312,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -1296,6 +1340,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1323,6 +1368,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlSpace diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml index be731e303..de074350f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryWriter @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryWriter @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -148,6 +153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryWriter @@ -176,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlDictionaryWriter @@ -203,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -237,6 +245,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -267,6 +276,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -297,6 +307,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -331,6 +342,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -361,6 +373,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -400,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -427,6 +441,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -454,6 +469,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -481,6 +497,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -511,6 +528,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -538,6 +556,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -570,6 +589,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -600,6 +620,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -634,6 +655,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -668,6 +690,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -695,6 +718,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -726,6 +750,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -761,6 +786,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.WriteState @@ -788,6 +814,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -818,6 +845,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -850,6 +878,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -880,6 +909,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -912,6 +942,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml index 663a253b3..a3056f75c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -155,6 +160,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -183,6 +189,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Signature diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml index 6bdb3b079..cb36990d0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Transform @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml index 463f1b331..0ed794031 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryWriter @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -77,6 +79,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -113,6 +116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -146,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -174,6 +179,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -204,6 +210,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -234,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -264,6 +272,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -295,6 +304,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml index 2de942ef3..96a662102 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml index 6ed2a11b9..259ef1beb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.Object> @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml index b6ae2d818..00ccad7b2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml index cf7dc6aa2..0d3e9f00d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigElement @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -89,6 +92,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -116,6 +120,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -146,6 +151,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -173,6 +179,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -200,6 +207,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -227,6 +235,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.RSAKeyValue @@ -254,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.X509Data> diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml index ac9b291af..c8ed5fe4d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml index eddbbda87..3a3bc166b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigElement @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Byte[] @@ -151,6 +156,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -179,6 +185,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +214,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlTokenStream @@ -235,6 +243,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Transform> @@ -262,6 +271,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -289,6 +299,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -316,6 +327,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml index fd24ed47e..e72bd5d9b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigElement @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -173,6 +179,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -205,6 +212,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml index 1c062abf5..7d606f5e3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DSigElement @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -122,6 +126,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Reference> @@ -180,6 +186,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -208,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml index e929fcb8e..5a906f358 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -60,6 +62,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml index 6a35dca67..fe0e1243b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -36,6 +37,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -58,6 +60,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -84,6 +87,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.Transform @@ -150,6 +155,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -181,6 +187,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml index f0f45c3f4..226951c92 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml index 25c985d9d..d8d936372 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml index 203eccc4d..d92de6b07 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml index b74d53934..a74d6e1d9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml index 02a6fd676..c01ebbd09 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -111,6 +115,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -135,6 +140,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -159,6 +165,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -183,6 +190,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -207,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -231,6 +240,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -255,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml index c53fe272a..bc068e496 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -87,6 +90,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml index 92dcea77f..a2b81ebae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml index 46fd1ac7c..50736a11f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml index 5f629a867..8897b4305 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml index 9cbfc82bd..ac95dea36 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml index b26f2db5f..24109b1f6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml index 47ed38408..693a0ccab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml index 84b51a205..d9870bbd0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml index 690e4cc84..7d2c1d0de 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml index 0359c6ee7..a423b9e72 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -63,6 +65,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml index d4b78d025..916819adb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -90,6 +93,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -118,6 +122,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ICollection<System.String> @@ -145,6 +150,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -172,6 +178,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -202,6 +209,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Int32 @@ -229,6 +237,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.IssuerSerial @@ -256,6 +265,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -283,6 +293,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml index db44c6a8f..4e7e2c626 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml index 1373322c1..819c4d6f7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml index 4944b8cc8..516439d58 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml index 316539c18..920fb75d2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -37,6 +38,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -85,6 +88,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -109,6 +113,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -133,6 +138,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -157,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -181,6 +188,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -205,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -229,6 +238,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -253,6 +263,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -277,6 +288,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -301,6 +313,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -349,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -373,6 +388,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -397,6 +413,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -421,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -445,6 +463,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -469,6 +488,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -493,6 +513,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +538,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -541,6 +563,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -565,6 +588,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -589,6 +613,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -613,6 +638,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -637,6 +663,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -661,6 +688,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -685,6 +713,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml index a47aec82d..8c955dd73 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -40,6 +41,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -64,6 +66,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -88,6 +91,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -112,6 +116,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -136,6 +141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -160,6 +166,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -184,6 +191,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -208,6 +216,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -232,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -256,6 +266,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -280,6 +291,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -304,6 +316,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml index 358639713..0854b45e2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -61,6 +63,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -94,6 +97,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -131,6 +135,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -168,6 +173,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -201,6 +207,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml index d15e19731..3eac2da47 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -96,6 +99,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml index 83e47f093..1f5dfd55c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -73,6 +75,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -109,6 +112,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -144,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlQualifiedName @@ -177,6 +182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -209,6 +215,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -245,6 +252,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -285,6 +293,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -327,6 +336,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -367,6 +377,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -409,6 +420,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -449,6 +461,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Exception @@ -491,6 +504,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -522,6 +536,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Xml.XmlQualifiedName @@ -556,6 +571,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -592,6 +608,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml index c06524d5d..3db272419 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml index 3eee9092d..6256d6928 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Xml.XmlException @@ -44,6 +45,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -68,6 +70,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -95,6 +98,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -124,6 +128,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 diff --git a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json index ae1ca4e4b..32c9fad13 100644 --- a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json @@ -1 +1 @@ -{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"3.2.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.12.4","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json index e1fbb7bc3..d1bbe392f 100644 --- a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json @@ -1 +1 @@ -{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.31.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml index b62798b46..e70cd69d6 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml index 7fb28bcdf..665f2e539 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml index 465ad8c4d..0c2d586bb 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 T @@ -78,6 +80,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -109,6 +112,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -140,6 +144,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.Deserializer @@ -168,6 +173,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.Serializer @@ -196,6 +202,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml index 19d5aa673..62c45aaa8 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Object @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -65,6 +67,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -169,6 +175,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -195,6 +202,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml index c8cdd7551..35d917cf0 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -43,6 +44,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -97,6 +100,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -126,6 +130,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -158,6 +163,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -189,6 +195,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -223,6 +230,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -256,6 +264,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -292,6 +301,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -327,6 +337,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -354,6 +365,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -385,6 +397,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -413,6 +426,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -440,6 +454,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -471,6 +486,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -498,6 +514,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -525,6 +542,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -552,6 +570,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -579,6 +598,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -607,6 +627,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -634,6 +655,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -661,6 +683,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -688,6 +711,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -715,6 +739,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml index 6c5782aa8..504f54ba3 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.ValueType @@ -39,13 +40,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.1 To be added. @@ -65,13 +67,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.2 To be added. @@ -91,13 +94,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.3 To be added. @@ -117,14 +121,15 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-10 - Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5-2 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.10 + Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5.2 To be added. @@ -144,13 +149,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.2 To be added. @@ -170,13 +176,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-6-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.6.1.1 To be added. @@ -196,13 +203,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7518#section-4-7-1-1 + See: https://datatracker.ietf.org/doc/html/rfc7518#section-4.7.1.1 To be added. @@ -222,13 +230,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-2 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.2 To be added. @@ -248,13 +257,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.3 To be added. @@ -274,13 +284,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-4 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.4 To be added. @@ -300,14 +311,15 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-9 - Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5-1 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.9 + Also: https://datatracker.ietf.org/doc/html/rfc7519#section-5.1 To be added. @@ -327,13 +339,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-6 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.6 To be added. @@ -353,6 +366,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -379,13 +393,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7515#section-4-1-5 + See: https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.5 To be added. @@ -405,13 +420,14 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String - See: https://datatracker.ietf.org/doc/html/rfc7516#section-4-1-3 + See: https://datatracker.ietf.org/doc/html/rfc7516#section-4.1.3 To be added. diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml index d8417ff4b..85f90d122 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -42,6 +43,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -66,6 +68,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -93,6 +96,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -128,6 +132,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -166,6 +171,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -207,6 +213,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -234,6 +241,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -261,6 +269,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -291,6 +300,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -325,6 +335,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.String> @@ -352,6 +363,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IList<System.String> @@ -379,6 +391,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.Int32> @@ -406,6 +419,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -433,6 +447,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -464,6 +479,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -492,6 +508,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -519,6 +536,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -547,6 +565,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -578,6 +597,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.Int32> @@ -605,6 +625,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.Int32> @@ -632,6 +653,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -659,6 +681,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -686,6 +709,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -713,6 +737,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Nullable<System.Int32> @@ -740,6 +765,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -767,6 +793,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -795,6 +822,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -822,6 +850,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -849,6 +878,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml index 0ef2e4ff6..9ede097ff 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.ValueType @@ -41,6 +42,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -67,6 +69,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -91,6 +94,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -117,6 +121,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -143,6 +148,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -169,6 +175,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -195,6 +202,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -221,6 +229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -247,6 +256,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -273,6 +283,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -299,6 +310,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -325,6 +337,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -351,6 +364,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -377,6 +391,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -403,6 +418,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -429,6 +445,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -455,6 +472,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -481,6 +499,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -507,6 +526,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -531,6 +551,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -557,6 +578,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -583,6 +605,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -607,6 +630,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -633,6 +657,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -659,6 +684,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -685,6 +711,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -709,6 +736,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml index b57c12bff..f431fa658 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -39,6 +40,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -70,6 +72,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -100,6 +103,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -137,6 +141,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -175,6 +180,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -215,6 +221,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -242,6 +249,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -269,6 +277,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -301,6 +310,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -328,6 +338,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -355,6 +366,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -382,6 +394,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -409,6 +422,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -436,6 +450,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -463,6 +478,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -490,6 +506,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -517,6 +534,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -547,6 +565,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -575,6 +594,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -603,6 +623,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -631,6 +652,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -659,6 +681,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -687,6 +710,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -715,6 +739,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -743,6 +768,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -771,6 +797,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -798,6 +825,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -825,6 +853,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -852,6 +881,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -880,6 +910,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -907,6 +938,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -929,6 +961,7 @@ System.IdentityModel.Tokens.Jwt 6.31.0.0 + 6.32.0.0 System.String @@ -956,6 +989,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime @@ -983,6 +1017,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml index d0646ed6b..a19f1fdb9 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -38,6 +39,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 @@ -62,6 +64,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -98,6 +101,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -125,6 +129,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -152,6 +157,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -187,6 +193,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsIdentity @@ -222,6 +229,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -254,6 +262,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -298,6 +307,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -345,6 +355,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -394,6 +405,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -426,6 +438,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -471,6 +484,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -518,6 +532,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -567,6 +582,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -599,6 +615,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -636,6 +653,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ISet<System.String> @@ -662,6 +680,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -688,6 +707,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -714,6 +734,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -740,6 +761,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -766,6 +788,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.ISet<System.String> @@ -794,6 +817,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -822,6 +846,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -850,6 +875,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Boolean @@ -877,6 +903,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -904,6 +931,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -934,6 +962,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -976,6 +1005,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1016,6 +1046,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1050,6 +1081,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1085,6 +1117,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1120,6 +1153,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1148,6 +1182,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Type @@ -1176,6 +1211,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1211,6 +1247,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1248,6 +1285,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1282,6 +1320,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1320,6 +1359,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -1368,6 +1408,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1433,6 +1474,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1465,6 +1507,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Security.Claims.ClaimsPrincipal @@ -1498,6 +1541,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void @@ -1533,6 +1577,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.String @@ -1575,6 +1620,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Void diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml index 2ae4fb601..d8f1af639 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml @@ -12,6 +12,7 @@ 6.30.0.0 6.30.1.0 6.31.0.0 + 6.32.0.0 System.Delegate From c010fb35dfef0b27c8c97afd73b78318e3365d4a Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 24 Jul 2023 16:09:13 +0000 Subject: [PATCH 15/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=375185&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 9bf78f6b7..f7d9fe1ac 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index 0821d268c..c57d11902 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 42a800f98..f854ab767 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -35,8 +35,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index f793a7cf9..a012e714a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -539,8 +539,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -594,8 +594,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From 867565187ce2c90bc9cf33a63864f080a151a09b Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Tue, 25 Jul 2023 17:08:30 -0700 Subject: [PATCH 16/63] Update code sample to work --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 44ca76fba..896f93b09 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -69,19 +69,19 @@ try { if (existingAccount != null) { - result = await _pca.AcquireTokenSilent(scopes, existingAccount).ExecuteAsync(); + result = await app.AcquireTokenSilent(scopes, existingAccount).ExecuteAsync(); } // Next, try to sign in silently with the account that the user is signed into Windows else { - result = await _pca.AcquireTokenSilent(scopes, PublicClientApplication.OperatingSystemAccount) + result = await app.AcquireTokenSilent(scopes, PublicClientApplication.OperatingSystemAccount) .ExecuteAsync(); } } // Can't get a token silently, go interactive catch (MsalUiRequiredException ex) { - result = await app.AcquireTokenInteractive(new List() { scopes }).ExecuteAsync(); + result = await app.AcquireTokenInteractive(scopes).ExecuteAsync(); } ``` From 41f82f4c27e11a2c07092d00648b1ece26fd119e Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Tue, 25 Jul 2023 17:11:41 -0700 Subject: [PATCH 17/63] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c849f42a3..bc472fcc1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This is the documentation repository for Microsoft Authentication Library (MSAL) Contributions to our documentation are welcome. Make sure to familiarize yourself with the [Microsoft Writing Style Guide](https://learn.microsoft.com/style-guide/welcome/) and the [Contributor Guide](https://learn.microsoft.com/contribute/) before making any changes. > **Warning** -> **Do not** modify any XML files in the `dotnet/xml` folder - those are generated automatically from the library source code and any changes will be automatically overwritten the next time the documentation Continuous Integration (CI) job runs. To make changes to any API docs you will need to open a pull request in the [AzureAD/microsoft-authentication-library-for-dotnet](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) repository. +> **Do not** modify any XML files in the `dotnet/xml` folder - those are generated automatically from the library source code and any changes will be automatically overwritten the next time the documentation [Continuous Integration (CI) job](https://apidrop.visualstudio.com/Content%20CI/_build?definitionId=5311) runs. To make changes to any API docs you will need to open a pull request in the [AzureAD/microsoft-authentication-library-for-dotnet](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) repository. If you would like to author an entirely new document (e.g., for a new scenario), make sure to [open an issue](https://github.com/MicrosoftDocs/microsoft-authentication-library-dotnet/issues) first. This will allow the engineering team to discuss the proposed changes and ensure that it won't be overwritten by future changes. From c5a4016fd4cfb667605e8934128c508fd15dc5ea Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Wed, 26 Jul 2023 00:22:19 +0000 Subject: [PATCH 18/63] CI Update Build.Reason:Manual by Den Delimarsky Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=375614&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- ...oftIdentity_Pages_Account_AccessDenied.xml | 10 ++ ..._MicrosoftIdentity_Pages_Account_Error.xml | 10 ++ ...rosoftIdentity_Pages_Account_SignedOut.xml | 10 ++ ...eas_MicrosoftIdentity_Pages__ViewStart.xml | 10 ++ .../FrameworksIndex/msal-dotnet-latest.xml | 7 +- .../msal-model-dotnet-latest.xml | 22 +-- .../CredentialDescription.xml | 22 +-- .../CredentialSourceLoaderParameters.xml | 2 +- ...AcquireTokenParameterBuilderExtensions.xml | 2 + .../ManagedIdentityId.xml | 38 ++++- .../PoPAuthenticationConfiguration.xml | 10 ++ .../IPoPCryptoProvider.xml | 4 + .../BrokerExtension.xml | 3 + .../CacheData.xml | 4 + .../CacheLevel.xml | 9 +- .../DesktopExtensions.xml | 4 + .../WamExtension.xml | 3 + ...tAcquireTokenParameterBuilderExtension.xml | 2 + ...AcquireTokenForClientBuilderExtensions.xml | 2 + ...nInteractiveParameterBuilderExtensions.xml | 2 + ...enOnBehalfOfParameterBuilderExtensions.xml | 2 + .../AppTokenProviderParameters.xml | 7 + .../AppTokenProviderResult.xml | 5 + ...tialClientApplicationBuilderExtensions.xml | 2 + ...onfidentialClientApplicationExtensions.xml | 2 + .../ICustomWebUi.xml | 2 + .../OnBeforeTokenRequestData.xml | 6 + .../KerberosKeyTypes.xml | 6 + .../KerberosSupplementalTicket.xml | 11 ++ .../KerberosSupplementalTicketManager.xml | 7 + .../KerberosTicketContainer.xml | 3 + .../ManagedIdentitySource.xml | 7 + .../Credential.xml | 3 + .../TicketCacheReader.xml | 5 + .../TicketCacheWriter.xml | 6 + .../RegionOutcome.xml | 7 + .../SSHExtensions.xml | 3 + .../TelemetryData.xml | 3 + .../WindowsNativeUtils.xml | 3 + .../AadAuthorityAudience.xml | 6 + ...AbstractAcquireTokenParameterBuilder`1.xml | 17 ++ .../AbstractApplicationBuilder`1.xml | 30 +++- ...tAppBaseAcquireTokenParameterBuilder`1.xml | 2 + ...alClientAcquireTokenParameterBuilder`1.xml | 4 + ...IdentityAcquireTokenParameterBuilder`1.xml | 3 + ...icClientAcquireTokenParameterBuilder`1.xml | 2 + .../AccountExtensions.xml | 2 + .../Microsoft.Identity.Client/AccountId.xml | 9 ++ ...kenByAuthorizationCodeParameterBuilder.xml | 7 + ...yIntegratedWindowsAuthParameterBuilder.xml | 3 + ...ireTokenByRefreshTokenParameterBuilder.xml | 3 + ...okenByUsernamePasswordParameterBuilder.xml | 3 + .../AcquireTokenForClientParameterBuilder.xml | 6 + ...okenForManagedIdentityParameterBuilder.xml | 2 + ...cquireTokenInteractiveParameterBuilder.xml | 12 ++ ...AcquireTokenOnBehalfOfParameterBuilder.xml | 6 + .../AcquireTokenSilentParameterBuilder.xml | 6 + ...ireTokenWithDeviceCodeParameterBuilder.xml | 3 + .../ApplicationBase.xml | 1 + .../ApplicationOptions.xml | 15 ++ .../AssertionRequestOptions.xml | 5 + .../AuthenticationHeaderParser.xml | 8 + .../AuthenticationInfoParameters.xml | 5 + .../AuthenticationResult.xml | 20 +++ .../AuthenticationResultMetadata.xml | 10 ++ .../AzureCloudInstance.xml | 10 +- ...AbstractAcquireTokenParameterBuilder`1.xml | 6 + .../BaseAbstractApplicationBuilder`1.xml | 8 + .../BaseApplicationOptions.xml | 5 + .../BrokerOptions+OperatingSystems.xml | 3 + .../BrokerOptions.xml | 9 +- .../CacheOptions.xml | 5 + .../CacheRefreshReason.xml | 6 + .../ClientApplicationBase.xml | 24 +++ .../ClientAssertionCertificate.xml | 6 +- .../ClientCredential.xml | 3 + .../ConfidentialClientApplication.xml | 30 +++- .../ConfidentialClientApplicationBuilder.xml | 30 +++- .../ConfidentialClientApplicationOptions.xml | 5 + .../DeviceCodeResult.xml | 9 ++ .../EmbeddedWebViewOptions.xml | 4 + ...uthorizationRequestUrlParameterBuilder.xml | 10 ++ .../Microsoft.Identity.Client/IAccount.xml | 4 + .../Microsoft.Identity.Client/IAppConfig.xml | 20 +++ .../IApplicationBase.xml | 1 + .../IByRefreshToken.xml | 3 + .../IClientApplicationBase.xml | 20 +++ .../IConfidentialClientApplication.xml | 15 ++ ...entialClientApplicationWithCertificate.xml | 5 + .../ILongRunningWebApi.xml | 3 + .../IManagedIdentityApplication.xml | 2 + .../IMsalHttpClientFactory.xml | 12 +- .../IPublicClientApplication.xml | 153 +++++++++++------- .../ITelemetryConfig.xml | 4 + .../ITelemetryEventPayload.xml | 7 + .../Microsoft.Identity.Client/ITokenCache.xml | 17 ++ .../ITokenCacheSerializer.xml | 7 + .../xml/Microsoft.Identity.Client/IUser.xml | 5 + ...neAppProtectionPolicyRequiredException.xml | 6 + .../Microsoft.Identity.Client/LogCallback.xml | 1 + .../Microsoft.Identity.Client/LogLevel.xml | 6 + .../xml/Microsoft.Identity.Client/Logger.xml | 6 + .../ManagedIdentityApplication.xml | 2 + .../ManagedIdentityApplicationBuilder.xml | 10 +- .../xml/Microsoft.Identity.Client/Metrics.xml | 5 + .../MsalClientException.xml | 4 + .../Microsoft.Identity.Client/MsalError.xml | 147 +++++++++++++++++ .../MsalException.xml | 15 ++ .../MsalManagedIdentityException.xml | 7 + .../MsalServiceException.xml | 13 ++ .../MsalThrottledServiceException.xml | 3 + .../MsalThrottledUiRequiredException.xml | 3 + .../MsalUiRequiredException.xml | 5 + .../OsCapabilitiesExtensions.xml | 5 + .../xml/Microsoft.Identity.Client/Prompt.xml | 10 ++ .../PublicClientApplication.xml | 65 ++++++-- .../PublicClientApplicationBuilder.xml | 15 +- .../PublicClientApplicationExtensions.xml | 2 + .../PublicClientApplicationOptions.xml | 2 + .../RegionDetails.xml | 5 + .../SystemWebViewOptions.xml | 10 ++ .../Telemetry+Receiver.xml | 1 + .../Microsoft.Identity.Client/Telemetry.xml | 6 + .../TelemetryAudienceType.xml | 3 + .../TenantProfile.xml | 5 + .../TokenCache+TokenCacheNotification.xml | 1 + .../Microsoft.Identity.Client/TokenCache.xml | 26 +++ .../TokenCacheCallback.xml | 1 + .../TokenCacheExtensions.xml | 2 + .../TokenCacheNotificationArgs.xml | 21 +++ .../Microsoft.Identity.Client/TokenSource.xml | 4 + .../TraceTelemetryConfig.xml | 6 + .../Microsoft.Identity.Client/UIBehavior.xml | 1 + .../Microsoft.Identity.Client/UIParent.xml | 4 + .../UiRequiredExceptionClassification.xml | 9 ++ .../UserAssertion.xml | 5 + .../WindowsBrokerOptions.xml | 5 + .../WwwAuthenticateParameters.xml | 39 ++++- .../WebApiBuilders.xml | 2 + .../OwinTokenAcquirerFactory.xml | 4 + .../IJwtBearerMiddlewareDiagnostics.xml | 2 + .../IOpenIdConnectMiddlewareDiagnostics.xml | 2 + .../JwtBearerMiddlewareDiagnostics.xml | 3 + ...icrosoftIdentityIssuerValidatorFactory.xml | 3 + .../OpenIdConnectMiddlewareDiagnostics.xml | 3 + .../RequiredScopeAttribute.xml | 6 + .../RequiredScopeOrAppPermissionAttribute.xml | 7 + .../RolesRequiredHttpContextExtensions.xml | 2 + .../ScopesRequiredHttpContextExtensions.xml | 2 + .../DistributedTokenCacheAdapterExtension.xml | 2 + .../MsalDistributedTokenCacheAdapter.xml | 8 + ...salDistributedTokenCacheAdapterOptions.xml | 7 + .../InMemoryTokenCacheProviderExtension.xml | 2 + .../MsalMemoryTokenCacheOptions.xml | 3 + .../MsalMemoryTokenCacheProvider.xml | 6 + .../MsalSessionTokenCacheProvider.xml | 7 + .../SessionTokenCacheProviderExtension.xml | 3 + .../CacheSerializerHints.xml | 4 + .../IMsalTokenCacheProvider.xml | 4 + .../MsalAbstractTokenCacheProvider.xml | 14 ++ .../AccountController.xml | 7 + .../AccessDeniedModel.xml | 3 + .../ErrorModel.xml | 6 + .../SignedOutModel.xml | 3 + .../ServiceCollectionExtensions.xml | 2 + .../AadIssuerValidatorOptions.xml | 3 + .../AccountExtensions.xml | 2 + .../ApiControllerExtensions.xml | 4 + .../AppBuilderExtension.xml | 3 + ...ervicesAuthenticationBuilderExtensions.xml | 2 + .../AppServicesAuthenticationDefaults.xml | 2 + .../AppServicesAuthenticationHandler.xml | 6 +- .../AppServicesAuthenticationInformation.xml | 3 + .../AppServicesAuthenticationOptions.xml | 2 + ...ServicesAuthenticationTokenAcquisition.xml | 9 ++ .../ApplicationBuilderExtensions.xml | 2 + .../AuthorizeForScopesAttribute.xml | 7 + ...ionsAuthenticationHttpContextExtension.xml | 2 + ...reIdentityForKubernetesClientAssertion.xml | 4 + .../BaseRequestExtensions.xml | 10 ++ .../CertificateDescription.xml | 13 ++ .../CertificateSource.xml | 7 + .../CertificatelessOptions.xml | 4 + .../Microsoft.Identity.Web/ClaimConstants.xml | 19 +++ .../ClaimsPrincipalExtensions.xml | 11 ++ .../ClaimsPrincipalFactory.xml | 3 + .../ClientAssertion.xml | 4 + .../ClientAssertionProviderBase.xml | 5 + .../xml/Microsoft.Identity.Web/Constants.xml | 13 ++ .../ControllerBaseExtensions.xml | 4 + .../CookiePolicyOptionsExtensions.xml | 4 + .../DefaultCertificateLoader.xml | 8 + .../DefaultCredentialsLoader.xml | 7 + .../DownstreamWebApi.xml | 5 + .../DownstreamWebApiExtensions.xml | 3 + .../DownstreamWebApiGenericExtensions.xml | 7 + .../DownstreamWebApiOptions.xml | 9 ++ .../GraphServiceCollectionExtensions.xml | 6 + .../IAuthRequiredScopeMetadata.xml | 3 + ...thRequiredScopeOrAppPermissionMetadata.xml | 5 + .../ICertificateLoader.xml | 2 + .../IDownstreamWebApi.xml | 7 + .../ILoginErrorAccessor.xml | 4 + ...AuthenticationDelegatingHandlerFactory.xml | 3 + .../ITokenAcquisition.xml | 13 ++ .../ManagedIdentityClientAssertion.xml | 3 + .../MicrosoftGraphExtensions.xml | 12 ++ .../MicrosoftGraphOptions.xml | 8 + ...dentityAppAuthenticationMessageHandler.xml | 3 + ...ityAppCallsWebApiAuthenticationBuilder.xml | 3 + ...lsWebApiAuthenticationBuilderExtension.xml | 2 + ...entityAuthenticationBaseMessageHandler.xml | 4 + ...osoftIdentityAuthenticationBaseOptions.xml | 9 ++ ...sageHandlerHttpClientBuilderExtensions.xml | 5 + ...ityAuthenticationMessageHandlerOptions.xml | 4 + ...osoftIdentityBaseAuthenticationBuilder.xml | 4 + ...ntityBlazorServiceCollectionExtensions.xml | 3 + ...tityConsentAndConditionalAccessHandler.xml | 7 + .../MicrosoftIdentityOptions.xml | 22 +++ ...entityUserAuthenticationMessageHandler.xml | 3 + ...oftIdentityWebApiAuthenticationBuilder.xml | 2 + ...yWebApiAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebApiServiceCollectionExtensions.xml | 2 + ...oftIdentityWebAppAuthenticationBuilder.xml | 3 + ...yWebAppAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebAppServiceCollectionExtensions.xml | 2 + ...osoftIdentityWebChallengeUserException.xml | 5 + .../PolicyBuilderExtensions.xml | 4 + .../RequiredScopeExtensions.xml | 3 + ...RequiredScopeOrAppPermissionExtensions.xml | 3 + .../ScopeAuthorizationRequirement.xml | 5 + ...rAppPermissionAuthorizationRequirement.xml | 7 + .../ServiceCollectionExtensions.xml | 2 + .../TokenAcquirerAppTokenCredential.xml | 4 + .../TokenAcquirerFactory.xml | 13 ++ .../TokenAcquirerTokenCredential.xml | 4 + .../TokenAcquisitionAppTokenCredential.xml | 4 + .../TokenAcquisitionOptions.xml | 5 + .../TokenAcquisitionTokenCredential.xml | 4 + .../TokenCacheExtensions.xml | 4 + .../msal-dotnet-latest.json | 2 +- .../msal-model-dotnet-latest.json | 2 +- 244 files changed, 1795 insertions(+), 129 deletions(-) diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml index 3ff1428dc..67db72581 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml @@ -12,6 +12,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -64,6 +66,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -95,6 +98,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -121,6 +125,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -152,6 +157,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -183,6 +189,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel @@ -208,6 +215,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -239,6 +247,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -270,6 +279,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml index a6a9d112f..012dc03b3 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml @@ -12,6 +12,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -64,6 +66,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -95,6 +98,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -121,6 +125,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -152,6 +157,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -183,6 +189,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel @@ -208,6 +215,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -239,6 +247,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -270,6 +279,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml index 38a465f53..fa49fc69f 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml @@ -12,6 +12,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -64,6 +66,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -95,6 +98,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -121,6 +125,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -152,6 +157,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -183,6 +189,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel @@ -208,6 +215,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -239,6 +247,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -270,6 +279,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml index c6b4eee53..1e0c43388 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml @@ -12,6 +12,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.Razor.RazorPage<System.Object> @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -67,6 +69,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -98,6 +101,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -129,6 +133,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -160,6 +165,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -186,6 +192,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -217,6 +224,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -248,6 +256,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -279,6 +288,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/FrameworksIndex/msal-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-dotnet-latest.xml index b62725b35..a0c80aab6 100644 --- a/dotnet/xml/FrameworksIndex/msal-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-dotnet-latest.xml @@ -1,9 +1,9 @@  - - - + + + @@ -1020,6 +1020,7 @@ + diff --git a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml index ff6b129cf..c43817eca 100644 --- a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml @@ -2,18 +2,18 @@ - - - - + + + + - - - - - - - + + + + + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index f7d9fe1ac..50c0096cd 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c57d11902..0821d268c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client.Advanced/AcquireTokenParameterBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Advanced/AcquireTokenParameterBuilderExtensions.xml index 27211c79a..1dc721b1c 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Advanced/AcquireTokenParameterBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Advanced/AcquireTokenParameterBuilderExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -39,6 +40,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client.AppConfig/ManagedIdentityId.xml b/dotnet/xml/Microsoft.Identity.Client.AppConfig/ManagedIdentityId.xml index ae4cbf4ee..0baa9fca6 100644 --- a/dotnet/xml/Microsoft.Identity.Client.AppConfig/ManagedIdentityId.xml +++ b/dotnet/xml/Microsoft.Identity.Client.AppConfig/ManagedIdentityId.xml @@ -8,6 +8,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -18,7 +19,8 @@ Class to store configuration for a managed identity enabled on a resource. For a system assigned managed identity use ManagedIdentityId.SystemAssigned. For user assigned managed identity use ManagedIdentityId.WithUserAssignedClientId("clientId") or - ManagedIdentityId.WithUserAssignedResourceId("resourceId"). + ManagedIdentityId.WithUserAssignedResourceId("resourceId") or + ManagedIdentityId.WithUserAssignedObjectId("objectid"). For more details see https://aka.ms/msal-net-managed-identity To be added. @@ -35,6 +37,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AppConfig.ManagedIdentityId @@ -58,6 +61,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AppConfig.ManagedIdentityId @@ -66,7 +70,7 @@ - Client id of the user assigned managed identity assigned to azure resource. + Client id of the user assigned managed identity assigned to the azure resource. Create an instance of ManagedIdentityId for a user assigned managed identity from a client id. @@ -75,6 +79,33 @@ + + + + + + + Method + + Microsoft.Identity.Client + 4.55.0.0 + + + Microsoft.Identity.Client.AppConfig.ManagedIdentityId + + + + + + Object id of the user assigned managed identity assigned to the azure resource. + + Create an instance of ManagedIdentityId for a user assigned managed identity from an object id. + + Instance of ManagedIdentityId. + To be added. + + + @@ -86,6 +117,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AppConfig.ManagedIdentityId @@ -94,7 +126,7 @@ - Resource id of the user assigned managed identity assigned to azure resource. + Resource id of the user assigned managed identity assigned to the azure resource. Create an instance of ManagedIdentityId for a user assigned managed identity from a resource id. diff --git a/dotnet/xml/Microsoft.Identity.Client.AppConfig/PoPAuthenticationConfiguration.xml b/dotnet/xml/Microsoft.Identity.Client.AppConfig/PoPAuthenticationConfiguration.xml index d61669273..6539c534a 100644 --- a/dotnet/xml/Microsoft.Identity.Client.AppConfig/PoPAuthenticationConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Client.AppConfig/PoPAuthenticationConfiguration.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -101,6 +104,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -131,6 +135,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -159,6 +164,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Net.Http.HttpMethod @@ -190,6 +196,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -218,6 +225,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -247,6 +255,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AuthScheme.PoP.IPoPCryptoProvider @@ -278,6 +287,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client.AuthScheme.PoP/IPoPCryptoProvider.xml b/dotnet/xml/Microsoft.Identity.Client.AuthScheme.PoP/IPoPCryptoProvider.xml index 73fa096f2..e26ae3776 100644 --- a/dotnet/xml/Microsoft.Identity.Client.AuthScheme.PoP/IPoPCryptoProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Client.AuthScheme.PoP/IPoPCryptoProvider.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -46,6 +47,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -75,6 +77,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -105,6 +108,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.Identity.Client.Broker/BrokerExtension.xml b/dotnet/xml/Microsoft.Identity.Client.Broker/BrokerExtension.xml index cdf9ae9a0..e66db6a8b 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Broker/BrokerExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Broker/BrokerExtension.xml @@ -10,6 +10,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -35,6 +36,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client.Cache/CacheData.xml b/dotnet/xml/Microsoft.Identity.Client.Cache/CacheData.xml index 09878449a..8dab5f752 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Cache/CacheData.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Cache/CacheData.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -53,6 +54,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -76,6 +78,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.Identity.Client.Cache/CacheLevel.xml b/dotnet/xml/Microsoft.Identity.Client.Cache/CacheLevel.xml index 0627e51de..ad638bce5 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Cache/CacheLevel.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Cache/CacheLevel.xml @@ -7,6 +7,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 System.Enum @@ -28,6 +29,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Cache.CacheLevel @@ -49,13 +51,16 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Cache.CacheLevel 3 - To be added. + + Specifies if the L2 cache is used. + @@ -68,6 +73,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Cache.CacheLevel @@ -90,6 +96,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Cache.CacheLevel diff --git a/dotnet/xml/Microsoft.Identity.Client.Desktop/DesktopExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Desktop/DesktopExtensions.xml index f768ea139..6f7d44dec 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Desktop/DesktopExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Desktop/DesktopExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -85,6 +87,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -117,6 +120,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client.Desktop/WamExtension.xml b/dotnet/xml/Microsoft.Identity.Client.Desktop/WamExtension.xml index 5ee9ee6f4..663b937af 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Desktop/WamExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Desktop/WamExtension.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -77,6 +79,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AbstractConfidentialClientAcquireTokenParameterBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AbstractConfidentialClientAcquireTokenParameterBuilderExtension.xml index 15d2ac04e..286a5ffb0 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AbstractConfidentialClientAcquireTokenParameterBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AbstractConfidentialClientAcquireTokenParameterBuilderExtension.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractAcquireTokenParameterBuilder<T> diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenForClientBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenForClientBuilderExtensions.xml index c9bb35b14..ba935e1b2 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenForClientBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenForClientBuilderExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenInteractiveParameterBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenInteractiveParameterBuilderExtensions.xml index d26c4e585..70457d268 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenInteractiveParameterBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenInteractiveParameterBuilderExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -39,6 +40,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenOnBehalfOfParameterBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenOnBehalfOfParameterBuilderExtensions.xml index a4ec24421..eac450fdd 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenOnBehalfOfParameterBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AcquireTokenOnBehalfOfParameterBuilderExtensions.xml @@ -7,6 +7,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 System.Object @@ -28,6 +29,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderParameters.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderParameters.xml index 47664dc67..805ed9014 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderParameters.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -63,6 +65,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.CancellationToken @@ -91,6 +94,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -119,6 +123,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -147,6 +152,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -175,6 +181,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderResult.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderResult.xml index fea094ac4..971f76d4e 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderResult.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/AppTokenProviderResult.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -66,6 +68,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -122,6 +126,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Nullable<System.Int64> diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationBuilderExtensions.xml index b63893271..aea1d0add 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationBuilderExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationExtensions.xml index 22dfe43ac..fd6c86303 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ConfidentialClientApplicationExtensions.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -36,6 +37,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ICustomWebUi.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ICustomWebUi.xml index b7266f529..8800f9b56 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/ICustomWebUi.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/ICustomWebUi.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Uri> diff --git a/dotnet/xml/Microsoft.Identity.Client.Extensibility/OnBeforeTokenRequestData.xml b/dotnet/xml/Microsoft.Identity.Client.Extensibility/OnBeforeTokenRequestData.xml index 0b27f4ab1..4f927501e 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Extensibility/OnBeforeTokenRequestData.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Extensibility/OnBeforeTokenRequestData.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -75,6 +77,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -103,6 +106,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.CancellationToken @@ -131,6 +135,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -159,6 +164,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Uri diff --git a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosKeyTypes.xml b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosKeyTypes.xml index a6b92f2ae..a7a598413 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosKeyTypes.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosKeyTypes.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosKeyTypes @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosKeyTypes @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosKeyTypes @@ -121,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosKeyTypes @@ -148,6 +153,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosKeyTypes diff --git a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicket.xml b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicket.xml index f523f11d6..edca67ccb 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicket.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicket.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -66,6 +68,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -130,6 +134,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -164,6 +169,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -198,6 +204,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -232,6 +239,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -266,6 +274,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -300,6 +309,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -334,6 +344,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicketManager.xml b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicketManager.xml index e6215e88c..0fc022d81 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicketManager.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosSupplementalTicketManager.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosSupplementalTicket @@ -74,6 +76,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -109,6 +112,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -147,6 +151,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -180,6 +185,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -213,6 +219,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosTicketContainer.xml b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosTicketContainer.xml index 5c1684959..7b6588186 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosTicketContainer.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Kerberos/KerberosTicketContainer.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosTicketContainer @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosTicketContainer diff --git a/dotnet/xml/Microsoft.Identity.Client.ManagedIdentity/ManagedIdentitySource.xml b/dotnet/xml/Microsoft.Identity.Client.ManagedIdentity/ManagedIdentitySource.xml index d20e1416b..d246f38dc 100644 --- a/dotnet/xml/Microsoft.Identity.Client.ManagedIdentity/ManagedIdentitySource.xml +++ b/dotnet/xml/Microsoft.Identity.Client.ManagedIdentity/ManagedIdentitySource.xml @@ -8,6 +8,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -30,6 +31,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -52,6 +54,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -74,6 +77,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -96,6 +100,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -118,6 +123,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -140,6 +146,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource diff --git a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/Credential.xml b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/Credential.xml index ac824275f..7b38b3b97 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/Credential.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/Credential.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos.Credential diff --git a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheReader.xml b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheReader.xml index 68a2a4ff5..b33800d0c 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheReader.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheReader.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -81,6 +83,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -109,6 +112,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -139,6 +143,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheWriter.xml b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheWriter.xml index 0ef02c07f..5422bd228 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheWriter.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/TicketCacheWriter.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos.TicketCacheWriter @@ -80,6 +82,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -107,6 +110,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -138,6 +142,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -166,6 +171,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client.Region/RegionOutcome.xml b/dotnet/xml/Microsoft.Identity.Client.Region/RegionOutcome.xml index 1d831ede5..23b2ee264 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Region/RegionOutcome.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Region/RegionOutcome.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -121,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -148,6 +153,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -175,6 +181,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome diff --git a/dotnet/xml/Microsoft.Identity.Client.SSHCertificates/SSHExtensions.xml b/dotnet/xml/Microsoft.Identity.Client.SSHCertificates/SSHExtensions.xml index cf36ac4dd..80ef29d91 100644 --- a/dotnet/xml/Microsoft.Identity.Client.SSHCertificates/SSHExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client.SSHCertificates/SSHExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -81,6 +83,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/TelemetryData.xml b/dotnet/xml/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/TelemetryData.xml index 30893e8d6..7a0cfdd86 100644 --- a/dotnet/xml/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/TelemetryData.xml +++ b/dotnet/xml/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/TelemetryData.xml @@ -7,6 +7,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 System.Object @@ -28,6 +29,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 @@ -45,6 +47,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Cache.CacheLevel diff --git a/dotnet/xml/Microsoft.Identity.Client.Utils.Windows/WindowsNativeUtils.xml b/dotnet/xml/Microsoft.Identity.Client.Utils.Windows/WindowsNativeUtils.xml index ae323954a..dccfa2c7e 100644 --- a/dotnet/xml/Microsoft.Identity.Client.Utils.Windows/WindowsNativeUtils.xml +++ b/dotnet/xml/Microsoft.Identity.Client.Utils.Windows/WindowsNativeUtils.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -51,6 +52,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -81,6 +83,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/AadAuthorityAudience.xml b/dotnet/xml/Microsoft.Identity.Client/AadAuthorityAudience.xml index 68a159ce7..d05c297e3 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AadAuthorityAudience.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AadAuthorityAudience.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience @@ -97,6 +100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience @@ -125,6 +129,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience @@ -152,6 +157,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractAcquireTokenParameterBuilder`1.xml index 6a2f4156b..cff3f0bdd 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractAcquireTokenParameterBuilder`1.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -53,6 +54,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -78,6 +80,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -112,6 +115,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -157,6 +161,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -205,6 +210,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -251,6 +257,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -298,6 +305,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -345,6 +353,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -390,6 +399,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -440,6 +450,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -474,6 +485,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -509,6 +521,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -543,6 +556,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -577,6 +591,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -614,6 +629,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -652,6 +668,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractApplicationBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractApplicationBuilder`1.xml index bb8c92364..eba1360b4 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractApplicationBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractApplicationBuilder`1.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -50,6 +51,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -84,6 +86,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -121,6 +124,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -160,6 +164,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -174,7 +179,7 @@ Adds a known authority to the application from its Uri. See https://aka.ms/msal-net-application-configuration. This constructor is mainly used for scenarios where the authority is not a standard Azure AD authority, - nor an ADFS authority, nor an Azure AD B2C authority. For Azure AD, even in national and sovereign clouds, prefer + nor an ADFS authority, nor an Azure AD B2C authority. For Azure AD, even in sovereign clouds, prefer using other overrides such as The builder to chain the .With methods To be added. @@ -196,6 +201,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -236,6 +242,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -275,6 +282,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -315,6 +323,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -352,6 +361,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -394,6 +404,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -423,6 +434,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -467,6 +479,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -504,6 +517,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -537,6 +551,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -569,6 +584,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -601,6 +617,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -635,6 +652,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -669,6 +687,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -716,6 +735,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -762,6 +782,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -798,6 +819,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -835,6 +857,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -872,6 +895,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -910,6 +934,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -943,6 +968,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -979,6 +1005,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1021,6 +1048,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractClientAppBaseAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractClientAppBaseAcquireTokenParameterBuilder`1.xml index e34a2b3ab..93d8b69df 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractClientAppBaseAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractClientAppBaseAcquireTokenParameterBuilder`1.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -53,6 +54,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractConfidentialClientAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractConfidentialClientAcquireTokenParameterBuilder`1.xml index 06720a519..82f20493b 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractConfidentialClientAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractConfidentialClientAcquireTokenParameterBuilder`1.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -52,6 +53,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -83,6 +85,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -112,6 +115,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractManagedIdentityAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractManagedIdentityAcquireTokenParameterBuilder`1.xml index 273b7fd36..3517b5d3a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractManagedIdentityAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractManagedIdentityAcquireTokenParameterBuilder`1.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -47,6 +48,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -70,6 +72,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> diff --git a/dotnet/xml/Microsoft.Identity.Client/AbstractPublicClientAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/AbstractPublicClientAcquireTokenParameterBuilder`1.xml index ce9273578..c947f1618 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AbstractPublicClientAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AbstractPublicClientAcquireTokenParameterBuilder`1.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -52,6 +53,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> diff --git a/dotnet/xml/Microsoft.Identity.Client/AccountExtensions.xml b/dotnet/xml/Microsoft.Identity.Client/AccountExtensions.xml index a6032dca1..91e45485f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AccountExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AccountExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.TenantProfile> diff --git a/dotnet/xml/Microsoft.Identity.Client/AccountId.xml b/dotnet/xml/Microsoft.Identity.Client/AccountId.xml index 8770ee118..d72a7706e 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AccountId.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AccountId.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -100,6 +103,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -132,6 +136,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int32 @@ -160,6 +165,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -193,6 +199,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -221,6 +228,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -249,6 +257,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByAuthorizationCodeParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByAuthorizationCodeParameterBuilder.xml index 6d789e261..738424a5c 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByAuthorizationCodeParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByAuthorizationCodeParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractConfidentialClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder> @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -139,6 +143,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -173,6 +178,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -213,6 +219,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByIntegratedWindowsAuthParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByIntegratedWindowsAuthParameterBuilder.xml index d1c058272..d8485e04b 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByIntegratedWindowsAuthParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByIntegratedWindowsAuthParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractPublicClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenByIntegratedWindowsAuthParameterBuilder> @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByIntegratedWindowsAuthParameterBuilder @@ -77,6 +79,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByIntegratedWindowsAuthParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByRefreshTokenParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByRefreshTokenParameterBuilder.xml index df8ed6ce9..bfb4f514b 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByRefreshTokenParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByRefreshTokenParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractClientAppBaseAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenByRefreshTokenParameterBuilder> @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -72,6 +74,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByRefreshTokenParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByUsernamePasswordParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByUsernamePasswordParameterBuilder.xml index a10a42be5..6ceb16b9d 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByUsernamePasswordParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenByUsernamePasswordParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractPublicClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenByUsernamePasswordParameterBuilder> @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByUsernamePasswordParameterBuilder @@ -78,6 +80,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByUsernamePasswordParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForClientParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForClientParameterBuilder.xml index af95ac05b..40ea47772 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForClientParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForClientParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractConfidentialClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder> @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -72,6 +74,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -114,6 +117,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder @@ -148,6 +152,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -194,6 +199,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForManagedIdentityParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForManagedIdentityParameterBuilder.xml index 1c46d07a6..39aac427a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForManagedIdentityParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenForManagedIdentityParameterBuilder.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractManagedIdentityAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder> @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenInteractiveParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenInteractiveParameterBuilder.xml index 1a019caeb..1977b18cb 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenInteractiveParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenInteractiveParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractPublicClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder> @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -136,6 +140,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -167,6 +172,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -201,6 +207,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -241,6 +248,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -280,6 +288,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -312,6 +321,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -365,6 +375,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -397,6 +408,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenOnBehalfOfParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenOnBehalfOfParameterBuilder.xml index 53eb0aaed..201115f9f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenOnBehalfOfParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenOnBehalfOfParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractConfidentialClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder> @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -72,6 +74,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -105,6 +108,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -140,6 +144,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -179,6 +184,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenSilentParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenSilentParameterBuilder.xml index ca42933bd..9a3dc1a31 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenSilentParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenSilentParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractClientAppBaseAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder> @@ -46,6 +47,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -73,6 +75,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -112,6 +115,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -161,6 +165,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -220,6 +225,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenWithDeviceCodeParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenWithDeviceCodeParameterBuilder.xml index 0e24277ee..95300c37e 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AcquireTokenWithDeviceCodeParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AcquireTokenWithDeviceCodeParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractPublicClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.AcquireTokenWithDeviceCodeParameterBuilder> @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenWithDeviceCodeParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/ApplicationBase.xml b/dotnet/xml/Microsoft.Identity.Client/ApplicationBase.xml index da0e5e8ec..3d71f3ac6 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ApplicationBase.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ApplicationBase.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Client/ApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Client/ApplicationOptions.xml index 899e4d1c6..0dbf1c9f4 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ApplicationOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.BaseApplicationOptions @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -66,6 +68,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AadAuthorityAudience @@ -95,6 +98,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance @@ -126,6 +130,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -159,6 +164,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -188,6 +194,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -216,6 +223,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -244,6 +252,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -283,6 +292,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -314,6 +324,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -342,6 +353,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -370,6 +382,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -409,6 +422,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -441,6 +455,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Kerberos.KerberosTicketContainer diff --git a/dotnet/xml/Microsoft.Identity.Client/AssertionRequestOptions.xml b/dotnet/xml/Microsoft.Identity.Client/AssertionRequestOptions.xml index 3c8b8b465..af8d68a75 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AssertionRequestOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AssertionRequestOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -63,6 +65,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.CancellationToken @@ -89,6 +92,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -117,6 +121,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/AuthenticationHeaderParser.xml b/dotnet/xml/Microsoft.Identity.Client/AuthenticationHeaderParser.xml index 3799e7b30..f748c0b21 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AuthenticationHeaderParser.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AuthenticationHeaderParser.xml @@ -12,6 +12,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -60,6 +62,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AuthenticationInfoParameters @@ -88,6 +91,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AuthenticationHeaderParser @@ -120,6 +124,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationHeaderParser> @@ -153,6 +158,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationHeaderParser> @@ -189,6 +195,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -216,6 +223,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyList<Microsoft.Identity.Client.WwwAuthenticateParameters> diff --git a/dotnet/xml/Microsoft.Identity.Client/AuthenticationInfoParameters.xml b/dotnet/xml/Microsoft.Identity.Client/AuthenticationInfoParameters.xml index 11cda40e1..337d0880a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AuthenticationInfoParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AuthenticationInfoParameters.xml @@ -12,6 +12,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -62,6 +64,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AuthenticationInfoParameters @@ -93,6 +96,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -126,6 +130,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/AuthenticationResult.xml b/dotnet/xml/Microsoft.Identity.Client/AuthenticationResult.xml index 32f1760d2..4ae7ad2d9 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AuthenticationResult.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AuthenticationResult.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -96,6 +98,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -153,6 +156,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -181,6 +185,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IAccount @@ -209,6 +214,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.String> @@ -240,6 +246,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AuthenticationResultMetadata @@ -268,6 +275,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Security.Claims.ClaimsPrincipal @@ -296,6 +304,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Guid @@ -324,6 +333,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -362,6 +372,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.DateTimeOffset @@ -392,6 +403,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -431,6 +443,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -459,6 +472,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -504,6 +518,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -532,6 +547,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -561,6 +577,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -590,6 +607,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -619,6 +637,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -654,6 +673,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/AuthenticationResultMetadata.xml b/dotnet/xml/Microsoft.Identity.Client/AuthenticationResultMetadata.xml index 668804779..4a7747018 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AuthenticationResultMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AuthenticationResultMetadata.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason @@ -97,6 +100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -126,6 +130,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -154,6 +159,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -183,6 +189,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Nullable<System.DateTimeOffset> @@ -212,6 +219,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.RegionDetails @@ -240,6 +248,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -275,6 +284,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TokenSource diff --git a/dotnet/xml/Microsoft.Identity.Client/AzureCloudInstance.xml b/dotnet/xml/Microsoft.Identity.Client/AzureCloudInstance.xml index 02e6d526d..89c3d01a6 100644 --- a/dotnet/xml/Microsoft.Identity.Client/AzureCloudInstance.xml +++ b/dotnet/xml/Microsoft.Identity.Client/AzureCloudInstance.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance @@ -45,7 +47,7 @@ 2 - Microsoft Chinese national cloud. Maps to https://login.chinacloudapi.cn + Microsoft Azure China cloud. Maps to https://login.chinacloudapi.cn @@ -65,6 +67,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance @@ -72,7 +75,7 @@ 3 - Microsoft German national cloud ("Black Forest"). Maps to https://login.microsoftonline.de + Microsoft Azure German cloud ("Black Forest"). Maps to https://login.microsoftonline.de @@ -92,6 +95,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance @@ -119,6 +123,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance @@ -146,6 +151,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AzureCloudInstance diff --git a/dotnet/xml/Microsoft.Identity.Client/BaseAbstractAcquireTokenParameterBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/BaseAbstractAcquireTokenParameterBuilder`1.xml index 59b910e5d..12753c7b1 100644 --- a/dotnet/xml/Microsoft.Identity.Client/BaseAbstractAcquireTokenParameterBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/BaseAbstractAcquireTokenParameterBuilder`1.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -96,6 +99,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -137,6 +141,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -163,6 +168,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client/BaseAbstractApplicationBuilder`1.xml b/dotnet/xml/Microsoft.Identity.Client/BaseAbstractApplicationBuilder`1.xml index 48e32ce8d..3d56779c7 100644 --- a/dotnet/xml/Microsoft.Identity.Client/BaseAbstractApplicationBuilder`1.xml +++ b/dotnet/xml/Microsoft.Identity.Client/BaseAbstractApplicationBuilder`1.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -88,6 +90,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -122,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -159,6 +163,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -200,6 +205,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -238,6 +244,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T @@ -283,6 +290,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 T diff --git a/dotnet/xml/Microsoft.Identity.Client/BaseApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Client/BaseApplicationOptions.xml index 51cc07ab1..b68fadbb1 100644 --- a/dotnet/xml/Microsoft.Identity.Client/BaseApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/BaseApplicationOptions.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -59,6 +61,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -89,6 +92,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -117,6 +121,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel diff --git a/dotnet/xml/Microsoft.Identity.Client/BrokerOptions+OperatingSystems.xml b/dotnet/xml/Microsoft.Identity.Client/BrokerOptions+OperatingSystems.xml index 270ec2780..1ece6f7ac 100644 --- a/dotnet/xml/Microsoft.Identity.Client/BrokerOptions+OperatingSystems.xml +++ b/dotnet/xml/Microsoft.Identity.Client/BrokerOptions+OperatingSystems.xml @@ -10,6 +10,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.BrokerOptions+OperatingSystems @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.BrokerOptions+OperatingSystems diff --git a/dotnet/xml/Microsoft.Identity.Client/BrokerOptions.xml b/dotnet/xml/Microsoft.Identity.Client/BrokerOptions.xml index 4e7249005..797e3858f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/BrokerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/BrokerOptions.xml @@ -10,6 +10,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -37,6 +38,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -62,6 +64,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.BrokerOptions+OperatingSystems @@ -87,6 +90,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -112,6 +116,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -125,10 +130,9 @@ A legacy option available only to Microsoft First-Party applications. Should be avoided where possible. - Support is experimental. To be added. - To be added. + This is a convenience API, the same can be achieved by using WithExtraQueryParameters and passing the extra query parameter "msal_request_type": "consumer_passthrough" @@ -144,6 +148,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/CacheOptions.xml b/dotnet/xml/Microsoft.Identity.Client/CacheOptions.xml index ae7021b1e..d30503bff 100644 --- a/dotnet/xml/Microsoft.Identity.Client/CacheOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/CacheOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -96,6 +99,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheOptions @@ -124,6 +128,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/CacheRefreshReason.xml b/dotnet/xml/Microsoft.Identity.Client/CacheRefreshReason.xml index 34cde999c..115c0cd9e 100644 --- a/dotnet/xml/Microsoft.Identity.Client/CacheRefreshReason.xml +++ b/dotnet/xml/Microsoft.Identity.Client/CacheRefreshReason.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason @@ -121,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason @@ -148,6 +153,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.CacheRefreshReason diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientApplicationBase.xml b/dotnet/xml/Microsoft.Identity.Client/ClientApplicationBase.xml index b7d3332b4..f3ac67816 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientApplicationBase.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientApplicationBase.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ApplicationBase @@ -53,6 +54,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -108,6 +110,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -165,6 +168,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -220,6 +224,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -284,6 +289,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IAppConfig @@ -315,6 +321,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -348,6 +355,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -390,6 +398,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -432,6 +441,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.IAccount> @@ -467,6 +477,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.IAccount> @@ -507,6 +518,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -539,6 +551,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -573,6 +586,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -605,6 +619,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -644,6 +659,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -690,6 +706,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -739,6 +756,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -784,6 +802,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task @@ -816,6 +835,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task @@ -853,6 +873,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -896,6 +917,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -942,6 +964,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ITokenCache @@ -977,6 +1000,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index f854ab767..d65851628 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -35,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + @@ -55,6 +56,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -89,6 +91,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -123,6 +126,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientCredential.xml b/dotnet/xml/Microsoft.Identity.Client/ClientCredential.xml index 13a9ac5ff..43af04380 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientCredential.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -56,6 +57,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -90,6 +92,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index a012e714a..717521f9c 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ClientApplicationBase @@ -66,6 +67,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -124,6 +126,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -192,6 +195,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -236,6 +240,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -288,6 +293,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder @@ -328,6 +334,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -377,6 +384,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -430,6 +438,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -466,6 +475,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -509,6 +519,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -539,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -562,6 +573,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -594,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -617,6 +629,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ITokenCache @@ -647,6 +660,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -674,6 +688,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -705,6 +720,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -744,6 +760,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -798,6 +815,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -860,6 +878,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -898,6 +917,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByRefreshTokenParameterBuilder @@ -933,6 +953,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -985,6 +1006,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1036,6 +1058,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1090,6 +1113,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1143,6 +1167,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1193,6 +1218,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationBuilder.xml index 3b18867c3..352104807 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractApplicationBuilder<Microsoft.Identity.Client.ConfidentialClientApplicationBuilder> @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -72,6 +74,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -107,6 +110,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -141,6 +145,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -150,20 +155,21 @@ Either the string with the region (preferred) or - use and MSAL.NET will attempt to auto-detect the region. + use and MSAL will attempt to auto-detect the region. - Instructs MSAL.NET to use an Azure regional token service. This feature is currently available to - first party applications only. + Instructs MSAL to use an Azure regional token service. This feature is currently available to + first-party applications only. The builder to chain the .With methods - The region value should be short region name for the region where the service is deployed. - For example "centralus" is short name for region Central US. - Service To Service (client credential flow) tokens can be obtained from the regional service. + The region value should be a short region name for the region where the service is deployed. + For example, "centralus" is short name for region Central US. + Currently only tokens for the client credential flow can be obtained from the regional service. Requires configuration at the tenant level. Auto-detection works on a limited number of Azure artifacts (VMs, Azure functions). If auto-detection fails, the non-regional endpoint will be used. + If a specific region was provided and the token web request failed, verify that the region name is valid. See https://aka.ms/msal-net-region-discovery for more details. @@ -184,6 +190,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -222,6 +229,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -257,6 +265,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -298,6 +307,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -331,6 +341,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -370,6 +381,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -409,6 +421,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -444,6 +457,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -485,6 +499,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -525,6 +540,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -555,6 +571,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder @@ -590,6 +607,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationOptions.xml index 3b03fc013..792d50adf 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplicationOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ApplicationOptions @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -103,6 +106,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -133,6 +137,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/DeviceCodeResult.xml b/dotnet/xml/Microsoft.Identity.Client/DeviceCodeResult.xml index 7ed4ffb9b..69735f8ee 100644 --- a/dotnet/xml/Microsoft.Identity.Client/DeviceCodeResult.xml +++ b/dotnet/xml/Microsoft.Identity.Client/DeviceCodeResult.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -46,6 +47,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -74,6 +76,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -102,6 +105,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.DateTimeOffset @@ -130,6 +134,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -158,6 +163,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -186,6 +192,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyCollection<System.String> @@ -214,6 +221,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -242,6 +250,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/EmbeddedWebViewOptions.xml b/dotnet/xml/Microsoft.Identity.Client/EmbeddedWebViewOptions.xml index efafd5424..dc7796b55 100644 --- a/dotnet/xml/Microsoft.Identity.Client/EmbeddedWebViewOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/EmbeddedWebViewOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -63,6 +65,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -91,6 +94,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/GetAuthorizationRequestUrlParameterBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/GetAuthorizationRequestUrlParameterBuilder.xml index 3a8bb175b..f95546292 100644 --- a/dotnet/xml/Microsoft.Identity.Client/GetAuthorizationRequestUrlParameterBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/GetAuthorizationRequestUrlParameterBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractConfidentialClientAcquireTokenParameterBuilder<Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder> @@ -47,6 +48,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Uri> @@ -74,6 +76,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Uri> @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -134,6 +138,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -169,6 +174,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -199,6 +205,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -229,6 +236,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -263,6 +271,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -295,6 +304,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/IAccount.xml b/dotnet/xml/Microsoft.Identity.Client/IAccount.xml index 3347f30b8..6e5eaf6bd 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IAccount.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IAccount.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AccountId @@ -97,6 +100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/IAppConfig.xml b/dotnet/xml/Microsoft.Identity.Client/IAppConfig.xml index 064151fde..97a74abaf 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IAppConfig.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IAppConfig.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -97,6 +100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -126,6 +130,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -154,6 +159,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -180,6 +186,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -208,6 +215,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -238,6 +246,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -268,6 +277,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -296,6 +306,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IMsalHttpClientFactory @@ -325,6 +336,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -353,6 +365,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -383,6 +396,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -411,6 +425,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogCallback @@ -440,6 +455,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel @@ -469,6 +485,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Func<System.Object> @@ -495,6 +512,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -522,6 +540,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -558,6 +577,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/IApplicationBase.xml b/dotnet/xml/Microsoft.Identity.Client/IApplicationBase.xml index 4ec93f42a..c94e31229 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IApplicationBase.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IApplicationBase.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/IByRefreshToken.xml b/dotnet/xml/Microsoft.Identity.Client/IByRefreshToken.xml index c3d4a59dd..e75899269 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IByRefreshToken.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IByRefreshToken.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -36,6 +37,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByRefreshTokenParameterBuilder @@ -75,6 +77,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/IClientApplicationBase.xml b/dotnet/xml/Microsoft.Identity.Client/IClientApplicationBase.xml index e608ff16a..ac82f0086 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IClientApplicationBase.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IClientApplicationBase.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -94,6 +96,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenSilentParameterBuilder @@ -145,6 +148,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -196,6 +200,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -255,6 +260,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IAppConfig @@ -283,6 +289,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -313,6 +320,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -352,6 +360,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -391,6 +400,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.IAccount> @@ -425,6 +435,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -454,6 +465,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Identity.Client.IAccount>> @@ -488,6 +500,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -531,6 +544,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -578,6 +592,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -620,6 +635,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task @@ -652,6 +668,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -692,6 +709,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -735,6 +753,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ITokenCache @@ -768,6 +787,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplication.xml index c4ba599d9..df6f901aa 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplication.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByAuthorizationCodeParameterBuilder @@ -87,6 +89,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -132,6 +135,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForClientParameterBuilder @@ -169,6 +173,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -211,6 +216,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -255,6 +261,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -295,6 +302,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -339,6 +347,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -388,6 +397,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -432,6 +442,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ITokenCache @@ -465,6 +476,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -504,6 +516,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder @@ -540,6 +553,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -586,6 +600,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplicationWithCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplicationWithCertificate.xml index 72cca6962..d7af3e4a8 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplicationWithCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IConfidentialClientApplicationWithCertificate.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -87,6 +89,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -137,6 +140,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -181,6 +185,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/ILongRunningWebApi.xml b/dotnet/xml/Microsoft.Identity.Client/ILongRunningWebApi.xml index caaefe156..fd0ebf119 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ILongRunningWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ILongRunningWebApi.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder @@ -79,6 +81,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenOnBehalfOfParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/IManagedIdentityApplication.xml b/dotnet/xml/Microsoft.Identity.Client/IManagedIdentityApplication.xml index e8da93e85..c7cdf3682 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IManagedIdentityApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IManagedIdentityApplication.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -38,6 +39,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/IMsalHttpClientFactory.xml b/dotnet/xml/Microsoft.Identity.Client/IMsalHttpClientFactory.xml index 62cc1ccde..94dd32323 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IMsalHttpClientFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IMsalHttpClientFactory.xml @@ -13,16 +13,19 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 - Factory responsible for creating HttpClient - .Net recommends to use a single instance of HttpClient. + Factory responsible for creating HttpClient. + See https://learn.microsoft.com/dotnet/api/system.net.http.httpclient?view=net-7.0#instancing for more details. - Implementations must be thread safe. Consider creating and configuring an HttpClient in the constructor - of the factory, and returning the same object in + Implementations must be thread safe. + Do not create a new HttpClient for each call to - this leads to socket exhaustion. + If your app uses Integrated Windows Authentication, ensure is set to true. + @@ -41,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Net.Http.HttpClient diff --git a/dotnet/xml/Microsoft.Identity.Client/IPublicClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/IPublicClientApplication.xml index 8c0e294c0..51fb6e19b 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IPublicClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IPublicClientApplication.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -24,11 +25,18 @@ - Interface to be used with desktop or mobile applications (Desktop / UWP / Xamarin.iOS / Xamarin.Android). - public client applications are not trusted to safely keep application secrets, and therefore they only access web APIs in the name of the user only. - For details see https://aka.ms/msal-net-client-applications. + Class used to acquire tokens in desktop and mobile applications. Public client applications are not trusted to safely keep application secrets and therefore they can only access web APIs in the name of the authenticating user. + For more details on differences between public and confidential clients, refer to our documentation. - To be added. + + + Unlike , public clients are unable to securely store secrets on a client device and as a result do not require the use of a client secret. + + + The redirect URI needed for interactive authentication is automatically determined by the library. It does not need to be passed explicitly in the constructor. Depending + on the authentication strategy (e.g., through the Web Account Manager, the Authenticator app, web browser, etc.), different redirect URIs will be used by MSAL. Redirect URIs must always be configured for the application in the Azure Portal. + + @@ -47,6 +55,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -90,6 +99,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -134,6 +144,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -180,6 +191,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -224,6 +236,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -270,6 +283,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -317,6 +331,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -367,6 +382,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -417,6 +433,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -469,6 +486,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -521,6 +539,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -577,6 +596,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -633,6 +653,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -691,6 +712,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -749,6 +771,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByIntegratedWindowsAuthParameterBuilder @@ -760,22 +783,20 @@ Scopes requested to access a protected API Non-interactive request to acquire a security token for the signed-in user in Windows, - via Integrated Windows Authentication. See https://aka.ms/msal-net-iwa. + via Integrated Windows Authentication. The account used in this overrides is pulled from the operating system as the current user principal name. A builder enabling you to add optional parameters before executing the token request - You can also pass optional parameters by calling: - to pass the identifier - of the user account for which to acquire a token with Integrated Windows authentication. This is generally in - UserPrincipalName (UPN) format, e.g. john.doe@contoso.com. This is normally not needed, but some Windows administrators - set policies preventing applications from looking-up the signed-in user in Windows, and in that case the username - needs to be passed. - You can also chain with - to pass - additional query parameters to the STS, and one of the overrides of - in order to override the default authority set at the application construction. Note that the overriding authority needs to be part - of the known authorities added to the application construction. + See our documentation for more details. + You can pass optional parameters by calling to pass the identifier + of the user account for which to acquire a token with Integrated Windows Authentication. This is generally in + User Principal Name (UPN) format (e.g. john.doe@contoso.com). This is normally not needed, but some Windows administrators + set policies preventing applications from looking up the signed-in user and in that case the username needs to be passed. + You can also chain with to pass + additional query parameters to the authentication service, along with one of the overrides of + in order to override the default authority. Note that the overriding authority needs to be part + of the known authorities added to the application constructor. @@ -795,6 +816,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -842,6 +864,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -889,6 +912,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -914,16 +938,16 @@ Generally in UserPrincipalName (UPN) format, e.g. john.doe@contoso.com User password as a secure string. - Non-interactive request to acquire a security token from the authority, via Username/Password Authentication. - Available only on .net desktop and .net core. See https://aka.ms/msal-net-up for details. + Non-interactive request to acquire a token via username and password authentication. A builder enabling you to add optional parameters before executing the token request - You can also pass optional parameters by chaining the builder with: - to pass - additional query parameters to the STS, and one of the overrides of - in order to override the default authority set at the application construction. Note that the overriding authority needs to be part - of the known authorities added to the application construction. - .NET no longer recommends using SecureString and MSAL puts the plaintext value of the password on the wire, as required by the OAuth protocol. See SecureString documentation. + + Available only for .NET Framework and .NET Core applications. See our documentation for details. + You can also pass optional parameters by chaining the builder with + and one of the overrides of + to override the default authority. Note that the overriding authority needs to be part + of the known authorities added to the application constructor. + .NET no longer recommends using SecureString and MSAL puts the plaintext value of the password on the wire, as required by the OAuth protocol. See SecureString documentation for details. @@ -943,6 +967,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByUsernamePasswordParameterBuilder @@ -958,15 +983,15 @@ Generally in UserPrincipalName (UPN) format, e.g. john.doe@contoso.com User password as a string. - Non-interactive request to acquire a security token from the authority, via Username/Password Authentication. - Available only on .NET desktop and .NET core. See https://aka.ms/msal-net-up for details. + Non-interactive request to acquire a token via username and password authentication. A builder enabling you to add optional parameters before executing the token request - You can also pass optional parameters by chaining the builder with: - to pass - additional query parameters to the Azure AD, and one of the overrides of - in order to override the default authority set at the application construction. Note that the overriding authority needs to be part - of the known authorities added to the application construction. + + Available only for .NET Framework and .NET Core applications. See our documentation for details. + You can also pass optional parameters by chaining the builder with + and one of the overrides of + to override the default authority. Note that the overriding authority needs to be part + of the known authorities added to the application constructor. @@ -986,6 +1011,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1034,6 +1060,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenInteractiveParameterBuilder @@ -1042,22 +1069,16 @@ - Scopes requested to access a protected API + Scopes requested to access a protected API. - Interactive request to acquire a token for the specified scopes. The interactive window will be parented to the specified - window. The user will be required to select an account - - A builder enabling you to add optional parameters before executing the token request - The user will be signed-in interactively if needed, - and will consent to scopes and do multi-factor authentication if such a policy was enabled in the Azure AD tenant. - You can also pass optional parameters by calling: - to specify the user experience - when signing-into specify - if you want to use the embedded web browser or the system default browserto configure - the user experience when using the Default browser or to prevent the select account dialog from appearing in the case you want to sign-in a specific accountsif you want to let the - user pre-consent to additional scopes (which won't be returned in the access token)to pass - additional query parameters to the Identity Provider, and - in order to change the tenant of the authority set at the application construction. + Interactive request to acquire a token for the specified scopes. The interactive window will be parented to an application + window specified through a handle. The user will be required to select an account. + + A builder enabling you to add optional parameters before executing the token request. + The user will be signed-in interactively and will consent to scopes, as well as perform a multi-factor authentication step if such a policy was enabled in the Azure AD tenant. + + You can also pass optional parameters by calling: + to specify the user experience when signing-in. to specify if you want to use the embedded web browser or the default system browser. to configure the user experience when using the default system browser. or to prevent the account selection dialog from appearing if you want to sign-in a specific account. if you want to let the user pre-consent to additional scopes (which won't be returned in the access token). to pass additional query parameters to the authentication service.One of the overrides of to override the default authority set at the application construction. Note that the overriding authority needs to be part of the known authorities added to the application constructor. @@ -1076,6 +1097,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenWithDeviceCodeParameterBuilder @@ -1088,20 +1110,21 @@ Scopes requested to access a protected API Callback containing information to show the user about how to authenticate and enter the device code. - Acquires a security token on a device without a Web browser, by letting the user authenticate on - another device. This is done in two steps: - The method first acquires a device code from the authority and returns it to the caller via - the . This callback takes care of interacting with the user - to direct them to authenticate (to a specific URL, with a code)The method then proceeds to poll for the security - token which is granted upon successful login by the user based on the device code information - See https://aka.ms/msal-device-code-flow. + Acquires a security token on a device without a web browser, by letting the user authenticate on + another device. A builder enabling you to add optional parameters before executing the token request - You can also pass optional parameters by calling: - to pass - additional query parameters to the Identity Provider, and - in order to change the tenant of the authority set at the application construction. + The token acquisition is done in two steps: + The method first acquires a device code from the authority and returns it to the caller via + the . This callback takes care of interacting with the user + to direct them to authenticate (i.e., to a specific URL, with a code)The method then proceeds to poll for the security + token which is granted upon successful login by the user based on the device code information. + See our documentation for additional context. + You can also pass optional parameters by calling + and one of the overrides of + in order to override the default authority. Note that the overriding authority needs to be part + of the known authorities added to the application constructor. @@ -1121,6 +1144,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1171,6 +1195,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1223,6 +1248,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1277,6 +1303,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1333,18 +1360,22 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean - Tells if the application can use the system web browser, therefore getting single-sign-on with web applications. + Tells if the application can use the system web browser, therefore enabling single-sign-on with web applications. By default, MSAL will try to use a system browser on the mobile platforms, if it is available. - See https://aka.ms/msal-net-uses-web-browser. + See our documentation for more details. - To be added. - To be added. + Returns true if MSAL can use the system web browser. + + On Windows, macOS, and Linux a system browser can always be used, except in cases where there is no UI (e.g., a SSH session). + On Android, the browser must support tabs. + diff --git a/dotnet/xml/Microsoft.Identity.Client/ITelemetryConfig.xml b/dotnet/xml/Microsoft.Identity.Client/ITelemetryConfig.xml index 3066bded4..17f3f55cf 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ITelemetryConfig.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ITelemetryConfig.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -46,6 +47,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TelemetryAudienceType @@ -75,6 +77,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Action<Microsoft.Identity.Client.ITelemetryEventPayload> @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/ITelemetryEventPayload.xml b/dotnet/xml/Microsoft.Identity.Client/ITelemetryEventPayload.xml index 02de2b62e..9190c268f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ITelemetryEventPayload.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ITelemetryEventPayload.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -48,6 +49,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Boolean> @@ -74,6 +76,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int64> @@ -100,6 +103,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -126,6 +130,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -152,6 +157,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.String> @@ -178,6 +184,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/ITokenCache.xml b/dotnet/xml/Microsoft.Identity.Client/ITokenCache.xml index 53e0d7657..67c1bb69d 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ITokenCache.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ITokenCache.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -82,6 +84,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -126,6 +129,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -169,6 +173,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -219,6 +224,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -261,6 +267,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -300,6 +307,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -341,6 +349,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -382,6 +391,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -424,6 +434,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -464,6 +475,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -500,6 +512,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -536,6 +549,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -571,6 +585,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -606,6 +621,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -640,6 +656,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client/ITokenCacheSerializer.xml b/dotnet/xml/Microsoft.Identity.Client/ITokenCacheSerializer.xml index 18efdff29..4e11c3994 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ITokenCacheSerializer.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ITokenCacheSerializer.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -83,6 +85,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -129,6 +132,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -172,6 +176,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -212,6 +217,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -256,6 +262,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.Identity.Client/IUser.xml b/dotnet/xml/Microsoft.Identity.Client/IUser.xml index 563a9d174..ceea8ec80 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IUser.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IUser.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -49,6 +50,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -92,6 +94,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -136,6 +139,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -180,6 +184,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/IntuneAppProtectionPolicyRequiredException.xml b/dotnet/xml/Microsoft.Identity.Client/IntuneAppProtectionPolicyRequiredException.xml index 1958bd677..910de0486 100644 --- a/dotnet/xml/Microsoft.Identity.Client/IntuneAppProtectionPolicyRequiredException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/IntuneAppProtectionPolicyRequiredException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalServiceException @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -78,6 +80,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -106,6 +109,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -134,6 +138,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -162,6 +167,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/LogCallback.xml b/dotnet/xml/Microsoft.Identity.Client/LogCallback.xml index 146358ebc..763536fb7 100644 --- a/dotnet/xml/Microsoft.Identity.Client/LogCallback.xml +++ b/dotnet/xml/Microsoft.Identity.Client/LogCallback.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.Identity.Client/LogLevel.xml b/dotnet/xml/Microsoft.Identity.Client/LogLevel.xml index 18d70e9ef..bc6020770 100644 --- a/dotnet/xml/Microsoft.Identity.Client/LogLevel.xml +++ b/dotnet/xml/Microsoft.Identity.Client/LogLevel.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel @@ -95,6 +98,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel @@ -122,6 +126,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel @@ -149,6 +154,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.LogLevel diff --git a/dotnet/xml/Microsoft.Identity.Client/Logger.xml b/dotnet/xml/Microsoft.Identity.Client/Logger.xml index 127255e7b..7466038a2 100644 --- a/dotnet/xml/Microsoft.Identity.Client/Logger.xml +++ b/dotnet/xml/Microsoft.Identity.Client/Logger.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -48,6 +49,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -107,6 +110,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -143,6 +147,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -179,6 +184,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplication.xml index a3840b5bd..ce71519c1 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplication.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ApplicationBase @@ -49,6 +50,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplicationBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplicationBuilder.xml index 040fd6328..2d9eb86e9 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplicationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ManagedIdentityApplicationBuilder.xml @@ -11,6 +11,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.BaseAbstractApplicationBuilder<Microsoft.Identity.Client.ManagedIdentityApplicationBuilder> @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IManagedIdentityApplication @@ -65,6 +67,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentityApplicationBuilder @@ -75,9 +78,11 @@ Configuration of the Managed Identity assigned to the resource. - Creates a ManagedIdentityApplicationBuilder from a user assigned managed identity clientID / resourceId. + Creates a ManagedIdentityApplicationBuilder from a user assigned managed identity clientID / resourceId / objectId. For example, for a system assigned managed identity use ManagedIdentityApplicationBuilder.Create(ManagedIdentityId.SystemAssigned) - and for a user assigned managed identity use ManagedIdentityApplicationBuilder.Create(ManagedIdentityId.WithUserAssignedClientId(clientId)). + and for a user assigned managed identity use ManagedIdentityApplicationBuilder.Create(ManagedIdentityId.WithUserAssignedClientId(clientId)) or + ManagedIdentityId.WithUserAssignedResourceId("resourceId") or + ManagedIdentityId.WithUserAssignedObjectId("objectid"). For more details see https://aka.ms/msal-net-managed-identity A from which to set more @@ -99,6 +104,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentityApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Client/Metrics.xml b/dotnet/xml/Microsoft.Identity.Client/Metrics.xml index 8932b038b..3c13503de 100644 --- a/dotnet/xml/Microsoft.Identity.Client/Metrics.xml +++ b/dotnet/xml/Microsoft.Identity.Client/Metrics.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -97,6 +100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 @@ -125,6 +129,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int64 diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalClientException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalClientException.xml index d534c1f03..051dec308 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalClientException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalClientException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalException @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -74,6 +76,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -108,6 +111,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalError.xml b/dotnet/xml/Microsoft.Identity.Client/MsalError.xml index d33ab9755..16195b0ee 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalError.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalError.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -100,6 +103,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -128,6 +132,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -156,6 +161,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -184,6 +190,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -211,6 +218,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -238,6 +246,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -267,6 +276,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -298,6 +308,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -327,6 +338,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -359,6 +371,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -388,6 +401,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -416,6 +430,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -444,6 +459,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -478,6 +494,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -505,6 +522,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -533,6 +551,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -561,6 +580,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -588,6 +608,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -616,6 +637,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -643,6 +665,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -670,6 +693,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -700,6 +724,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -728,6 +753,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -756,6 +782,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -784,6 +811,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -811,6 +839,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -838,6 +867,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -867,6 +897,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -894,6 +925,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -923,6 +955,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -952,6 +985,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -980,6 +1014,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1008,6 +1043,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1036,6 +1072,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1063,6 +1100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1090,6 +1128,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1121,6 +1160,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1150,6 +1190,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1177,6 +1218,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1205,6 +1247,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1238,6 +1281,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1266,6 +1310,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1300,6 +1345,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1331,6 +1377,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1358,6 +1405,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1385,6 +1433,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1413,6 +1462,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1440,6 +1490,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1468,6 +1519,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1495,6 +1547,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1522,6 +1575,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1553,6 +1607,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1580,6 +1635,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1608,6 +1664,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1639,6 +1696,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1669,6 +1727,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1696,6 +1755,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1725,6 +1785,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1756,6 +1817,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1783,6 +1845,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1811,6 +1874,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1840,6 +1904,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1866,6 +1931,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1893,6 +1959,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1928,6 +1995,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1960,6 +2028,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -1987,6 +2056,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2015,6 +2085,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2045,6 +2116,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2073,6 +2145,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2101,6 +2174,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2131,6 +2205,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2153,6 +2228,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2180,6 +2256,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2207,6 +2284,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2238,6 +2316,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2266,6 +2345,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2297,6 +2377,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -2336,6 +2417,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2366,6 +2448,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2393,6 +2476,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2420,6 +2504,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2448,6 +2533,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2476,6 +2562,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2507,6 +2594,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2534,6 +2622,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2566,6 +2655,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2594,6 +2684,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2627,6 +2718,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2654,6 +2746,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2681,6 +2774,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2711,6 +2805,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2738,6 +2833,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2768,6 +2864,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2798,6 +2895,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2825,6 +2923,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2856,6 +2955,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2884,6 +2984,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2913,6 +3014,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2940,6 +3042,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2968,6 +3071,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -2996,6 +3100,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3024,6 +3129,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3052,6 +3158,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3081,6 +3188,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3109,6 +3217,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3133,6 +3242,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3160,6 +3270,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3188,6 +3299,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3218,6 +3330,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3247,6 +3360,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3276,6 +3390,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3304,6 +3419,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3335,6 +3451,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3364,6 +3481,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -3402,6 +3520,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3430,6 +3549,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3463,6 +3583,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3495,6 +3616,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3522,6 +3644,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3552,6 +3675,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3580,6 +3704,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3607,6 +3732,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3634,6 +3760,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3665,6 +3792,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3697,6 +3825,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3728,6 +3857,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3756,6 +3886,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3782,6 +3913,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3809,6 +3941,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3836,6 +3969,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3866,6 +4000,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3893,6 +4028,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3921,6 +4057,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3949,6 +4086,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -3976,6 +4114,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4003,6 +4142,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4031,6 +4171,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4059,6 +4200,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4087,6 +4229,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4114,6 +4257,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4142,6 +4286,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4171,6 +4316,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -4198,6 +4344,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalException.xml index 969f6058a..f77add569 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Exception @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -99,6 +102,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -133,6 +137,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -168,6 +173,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.String> @@ -191,6 +197,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -213,6 +220,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -235,6 +243,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -257,6 +266,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -284,6 +294,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -314,6 +325,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalException @@ -346,6 +358,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -374,6 +387,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -403,6 +417,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalManagedIdentityException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalManagedIdentityException.xml index b066337e1..e5b3956ea 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalManagedIdentityException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalManagedIdentityException.xml @@ -8,6 +8,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalServiceException @@ -32,6 +33,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -63,6 +65,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -96,6 +99,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -129,6 +133,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -164,6 +169,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ManagedIdentity.ManagedIdentitySource @@ -187,6 +193,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalServiceException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalServiceException.xml index d391da596..06c39329b 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalServiceException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalServiceException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalException @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -77,6 +79,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -117,6 +120,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -154,6 +158,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -196,6 +201,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -240,6 +246,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -281,6 +288,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -309,6 +317,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Net.Http.Headers.HttpResponseHeaders @@ -340,6 +349,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -368,6 +378,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int32 @@ -399,6 +410,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -423,6 +435,7 @@ Microsoft.Identity.Client 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalThrottledServiceException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalThrottledServiceException.xml index 87085b81d..e45b11970 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalThrottledServiceException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalThrottledServiceException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalServiceException @@ -47,6 +48,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -75,6 +77,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalServiceException diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalThrottledUiRequiredException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalThrottledUiRequiredException.xml index b07f543c0..70e924748 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalThrottledUiRequiredException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalThrottledUiRequiredException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalUiRequiredException @@ -50,6 +51,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -78,6 +80,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalUiRequiredException diff --git a/dotnet/xml/Microsoft.Identity.Client/MsalUiRequiredException.xml b/dotnet/xml/Microsoft.Identity.Client/MsalUiRequiredException.xml index 7e2ddf6d3..a4da6236f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/MsalUiRequiredException.xml +++ b/dotnet/xml/Microsoft.Identity.Client/MsalUiRequiredException.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.MsalServiceException @@ -45,6 +46,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -79,6 +81,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -115,6 +118,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -154,6 +158,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification diff --git a/dotnet/xml/Microsoft.Identity.Client/OsCapabilitiesExtensions.xml b/dotnet/xml/Microsoft.Identity.Client/OsCapabilitiesExtensions.xml index f7fca813b..b61fbee30 100644 --- a/dotnet/xml/Microsoft.Identity.Client/OsCapabilitiesExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/OsCapabilitiesExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -73,6 +75,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -108,6 +111,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -143,6 +147,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/Prompt.xml b/dotnet/xml/Microsoft.Identity.Client/Prompt.xml index 93ce48a9f..208114223 100644 --- a/dotnet/xml/Microsoft.Identity.Client/Prompt.xml +++ b/dotnet/xml/Microsoft.Identity.Client/Prompt.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.ValueType @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Prompt @@ -70,6 +72,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Prompt @@ -98,6 +101,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -130,6 +134,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Prompt @@ -158,6 +163,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Int32 @@ -187,6 +193,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Prompt @@ -215,6 +222,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -249,6 +257,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -283,6 +292,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Prompt diff --git a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplication.xml index e780f348c..63a6be8c0 100644 --- a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplication.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ClientApplicationBase @@ -46,6 +47,7 @@ on the authentication strategy (e.g., through the Web Authentication Manager, Authentication app, browser, etc.), different redirect URIs will be used by MSAL. Redirect URIs must always be configured in the Azure Active Directory blade in the Azure Portal. + @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -103,6 +106,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -149,6 +153,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -194,6 +199,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -240,6 +246,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -287,6 +294,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -336,6 +344,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -383,6 +392,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -432,6 +442,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -482,6 +493,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -535,6 +547,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -588,6 +601,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -643,6 +657,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -698,6 +713,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -757,6 +773,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -816,6 +833,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -877,6 +895,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -938,6 +957,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByIntegratedWindowsAuthParameterBuilder @@ -987,6 +1007,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1038,6 +1059,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1088,6 +1110,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1145,6 +1168,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByUsernamePasswordParameterBuilder @@ -1191,6 +1215,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1242,6 +1267,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1302,6 +1328,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenWithDeviceCodeParameterBuilder @@ -1351,6 +1378,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1404,6 +1432,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1459,6 +1488,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1516,6 +1546,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1572,6 +1603,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -1579,8 +1611,8 @@ - Returns true if a broker can be used. - This method is only needed to be used in mobile scenarios which support Mobile Application Management. In other supported scenarios, use WithBroker by itself, which will fall back to use a browser if broker is unavailable. + Returns true if an authentication broker can be used. + This method is only needed for mobile scenarios which support Mobile Application Management (MAM). In other cases, use WithBroker, which will fall back to use a browser if an authentication broker is unavailable. To be added. @@ -1620,6 +1652,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -1627,12 +1660,13 @@ - Returns true if MSAL can use an embedded web view (browser). + Returns true if MSAL can use an embedded web view (web browser). To be added. - Currently there are no embedded web views on Mac and Linux. On Windows, app developers or users should install - the WebView2 runtime and this property will inform if the runtime is available, see https://aka.ms/msal-net-webview2 + All .NET Framework applications will use the legacy web view. .NET 6 and .NET Core applications must use the Microsoft.Identity.Client.Desktop package with WebView2. .NET 6 for Windows comes with WebView2 by default. + WebView2 UI is only shown for non-AAD authorities. + Refer to our documentation for additional details. @@ -1652,6 +1686,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -1684,6 +1719,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -1715,6 +1751,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -1722,8 +1759,9 @@ - Returns false when the program runs in headless OS, for example when SSH-ed into a Linux machine. - Browsers (web views) and brokers cannot be used if there is no UI support. Instead, please use + Returns false when the application runs in headless mode (e.g., when SSH-d into a Linux machine). + Browsers (web views) and brokers cannot be used if there is no UI support. For those scenarios, use . + To be added. To be added. @@ -1747,6 +1785,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AcquireTokenByRefreshTokenParameterBuilder @@ -1782,6 +1821,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -1831,20 +1871,21 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IAccount - Currently only the Windows broker is able to login with the current user, see https://aka.ms/msal-net-wam for details. - - A special account value that indicates that the current Operating System account should be used - to login the user. Not all operating systems and authentication flows support this concept, in which + A special account value that indicates that the current operating system account should be used + to log the user in. Not all operating systems and authentication flows support this concept, in which case calling `AcquireTokenSilent` will throw an . To be added. - To be added. + + Currently only the Windows broker is able to login with the current operating system user. For additional details, see the documentation on the Windows broker. + diff --git a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationBuilder.xml b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationBuilder.xml index 4a1379913..b9ca97d20 100644 --- a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationBuilder.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.AbstractApplicationBuilder<Microsoft.Identity.Client.PublicClientApplicationBuilder> @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IPublicClientApplication @@ -69,6 +71,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -104,6 +107,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -138,6 +142,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -186,6 +191,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -227,6 +233,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -261,6 +268,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -303,6 +311,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.PublicClientApplicationBuilder @@ -337,6 +346,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -354,7 +364,7 @@ Enable or disable multi cloud support. Enables multi cloud support for this instance of public client application. - It enables applications to use in a global public cloud authority to the library and can still get tokens for resources from national clouds. + It enables applications to use in a global public cloud authority to the library and can still get tokens for resources from sovereign clouds. A from which to set more parameters, and to create a public client application instance @@ -377,6 +387,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -416,6 +427,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -458,6 +470,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationExtensions.xml b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationExtensions.xml index f4253a728..ebf5cb22e 100644 --- a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationOptions.xml b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationOptions.xml index f4a148cb7..6868bdb11 100644 --- a/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/PublicClientApplicationOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ApplicationOptions @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/RegionDetails.xml b/dotnet/xml/Microsoft.Identity.Client/RegionDetails.xml index f6d322d81..f12d5d092 100644 --- a/dotnet/xml/Microsoft.Identity.Client/RegionDetails.xml +++ b/dotnet/xml/Microsoft.Identity.Client/RegionDetails.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -77,6 +79,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -105,6 +108,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.Region.RegionOutcome @@ -133,6 +137,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/SystemWebViewOptions.xml b/dotnet/xml/Microsoft.Identity.Client/SystemWebViewOptions.xml index aa7546401..d1b596ab6 100644 --- a/dotnet/xml/Microsoft.Identity.Client/SystemWebViewOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/SystemWebViewOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -43,6 +44,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -68,6 +70,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Uri @@ -96,6 +99,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Uri @@ -124,6 +128,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -154,6 +159,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -183,6 +189,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -212,6 +219,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Func<System.Uri,System.Threading.Tasks.Task> @@ -242,6 +250,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task @@ -275,6 +284,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Client/Telemetry+Receiver.xml b/dotnet/xml/Microsoft.Identity.Client/Telemetry+Receiver.xml index 82f417392..8f3922671 100644 --- a/dotnet/xml/Microsoft.Identity.Client/Telemetry+Receiver.xml +++ b/dotnet/xml/Microsoft.Identity.Client/Telemetry+Receiver.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.Identity.Client/Telemetry.xml b/dotnet/xml/Microsoft.Identity.Client/Telemetry.xml index 0dc778bac..eee564507 100644 --- a/dotnet/xml/Microsoft.Identity.Client/Telemetry.xml +++ b/dotnet/xml/Microsoft.Identity.Client/Telemetry.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -48,6 +49,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -108,6 +111,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -145,6 +149,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -184,6 +189,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/TelemetryAudienceType.xml b/dotnet/xml/Microsoft.Identity.Client/TelemetryAudienceType.xml index 578f9b401..fd26367d4 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TelemetryAudienceType.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TelemetryAudienceType.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -49,6 +50,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TelemetryAudienceType @@ -76,6 +78,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TelemetryAudienceType diff --git a/dotnet/xml/Microsoft.Identity.Client/TenantProfile.xml b/dotnet/xml/Microsoft.Identity.Client/TenantProfile.xml index 0530131cd..dc1d599d6 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TenantProfile.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TenantProfile.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Security.Claims.ClaimsPrincipal @@ -70,6 +72,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -98,6 +101,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -128,6 +132,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenCache+TokenCacheNotification.xml b/dotnet/xml/Microsoft.Identity.Client/TokenCache+TokenCacheNotification.xml index 67e06c453..482d7ecea 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenCache+TokenCacheNotification.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenCache+TokenCacheNotification.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenCache.xml b/dotnet/xml/Microsoft.Identity.Client/TokenCache.xml index 60c8439c4..a50de639f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenCache.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenCache.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -50,6 +51,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -90,6 +92,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -140,6 +143,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -184,6 +188,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -228,6 +233,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -274,6 +280,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -317,6 +324,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -360,6 +368,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -392,6 +401,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -424,6 +434,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -458,6 +469,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -488,6 +500,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -518,6 +531,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Byte[] @@ -548,6 +562,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -596,6 +611,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -638,6 +654,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -680,6 +697,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -722,6 +740,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -766,6 +785,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -804,6 +824,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -836,6 +857,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -873,6 +895,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -905,6 +928,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -940,6 +964,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void @@ -969,6 +994,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenCacheCallback.xml b/dotnet/xml/Microsoft.Identity.Client/TokenCacheCallback.xml index 54ae72bb1..47b444641 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenCacheCallback.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenCacheCallback.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Delegate diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenCacheExtensions.xml b/dotnet/xml/Microsoft.Identity.Client/TokenCacheExtensions.xml index 2745e84b3..aa648ec10 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenCacheExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenCacheExtensions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenCacheNotificationArgs.xml b/dotnet/xml/Microsoft.Identity.Client/TokenCacheNotificationArgs.xml index bc1ceaf4a..33d45c10a 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenCacheNotificationArgs.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenCacheNotificationArgs.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -44,6 +45,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -88,6 +90,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -134,6 +137,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -178,6 +182,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 @@ -234,6 +239,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.IAccount @@ -262,6 +268,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.CancellationToken @@ -291,6 +298,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -319,6 +327,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Guid @@ -346,6 +355,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -375,6 +385,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -407,6 +418,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.IdentityModel.Abstractions.IIdentityLogger @@ -436,6 +448,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -467,6 +480,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -495,6 +509,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -525,6 +540,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -555,6 +571,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Nullable<System.DateTimeOffset> @@ -586,6 +603,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -613,6 +631,7 @@ Microsoft.Identity.Client 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TelemetryCore.TelemetryClient.TelemetryData @@ -641,6 +660,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.ITokenCacheSerializer @@ -670,6 +690,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/TokenSource.xml b/dotnet/xml/Microsoft.Identity.Client/TokenSource.xml index 5eb41faac..909e82ff5 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TokenSource.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TokenSource.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TokenSource @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TokenSource @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TokenSource diff --git a/dotnet/xml/Microsoft.Identity.Client/TraceTelemetryConfig.xml b/dotnet/xml/Microsoft.Identity.Client/TraceTelemetryConfig.xml index 8aacc87bb..e0c268ca0 100644 --- a/dotnet/xml/Microsoft.Identity.Client/TraceTelemetryConfig.xml +++ b/dotnet/xml/Microsoft.Identity.Client/TraceTelemetryConfig.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -54,6 +55,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -77,6 +79,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IEnumerable<System.String> @@ -106,6 +109,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.TelemetryAudienceType @@ -135,6 +139,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Action<Microsoft.Identity.Client.ITelemetryEventPayload> @@ -164,6 +169,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/UIBehavior.xml b/dotnet/xml/Microsoft.Identity.Client/UIBehavior.xml index 94c40fc02..a97b5e8ce 100644 --- a/dotnet/xml/Microsoft.Identity.Client/UIBehavior.xml +++ b/dotnet/xml/Microsoft.Identity.Client/UIBehavior.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.ValueType diff --git a/dotnet/xml/Microsoft.Identity.Client/UIParent.xml b/dotnet/xml/Microsoft.Identity.Client/UIParent.xml index 1bbe47d05..f49e895ce 100644 --- a/dotnet/xml/Microsoft.Identity.Client/UIParent.xml +++ b/dotnet/xml/Microsoft.Identity.Client/UIParent.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -48,6 +49,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -81,6 +83,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -119,6 +122,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/UiRequiredExceptionClassification.xml b/dotnet/xml/Microsoft.Identity.Client/UiRequiredExceptionClassification.xml index 7cf2ce2d9..ba4bbb5d1 100644 --- a/dotnet/xml/Microsoft.Identity.Client/UiRequiredExceptionClassification.xml +++ b/dotnet/xml/Microsoft.Identity.Client/UiRequiredExceptionClassification.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Enum @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -71,6 +73,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -100,6 +103,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -128,6 +132,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -156,6 +161,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -184,6 +190,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -213,6 +220,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification @@ -242,6 +250,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.UiRequiredExceptionClassification diff --git a/dotnet/xml/Microsoft.Identity.Client/UserAssertion.xml b/dotnet/xml/Microsoft.Identity.Client/UserAssertion.xml index 544da904c..545615dfb 100644 --- a/dotnet/xml/Microsoft.Identity.Client/UserAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Client/UserAssertion.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -40,6 +41,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -67,6 +69,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -99,6 +102,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -127,6 +131,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Client/WindowsBrokerOptions.xml b/dotnet/xml/Microsoft.Identity.Client/WindowsBrokerOptions.xml index 87aa6ba9e..84c8025bc 100644 --- a/dotnet/xml/Microsoft.Identity.Client/WindowsBrokerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Client/WindowsBrokerOptions.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -41,6 +42,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -94,6 +97,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Boolean @@ -121,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 diff --git a/dotnet/xml/Microsoft.Identity.Client/WwwAuthenticateParameters.xml b/dotnet/xml/Microsoft.Identity.Client/WwwAuthenticateParameters.xml index 435f6ebab..e04e8a22f 100644 --- a/dotnet/xml/Microsoft.Identity.Client/WwwAuthenticateParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Client/WwwAuthenticateParameters.xml @@ -13,6 +13,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Object @@ -42,6 +43,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -64,6 +66,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -93,6 +96,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -121,6 +125,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -148,6 +153,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Collections.Generic.IReadOnlyList<Microsoft.Identity.Client.WwwAuthenticateParameters> @@ -179,6 +185,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 Microsoft.Identity.Client.WwwAuthenticateParameters @@ -212,6 +219,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Microsoft.Identity.Client.WwwAuthenticateParameters>> @@ -245,6 +253,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Microsoft.Identity.Client.WwwAuthenticateParameters>> @@ -280,6 +289,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.WwwAuthenticateParameters> @@ -315,6 +325,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.WwwAuthenticateParameters> @@ -353,6 +364,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -395,6 +407,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -439,6 +452,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -485,6 +499,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -529,6 +544,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -571,6 +587,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -599,6 +616,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -634,6 +652,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -663,6 +682,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -696,6 +716,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 System.String @@ -724,6 +745,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -740,7 +762,13 @@ This is the App ID URI of the API that returned the WWW-Authenticate header. To be added. - To be added. + + Clients that perform resource validation (e.g. by comparing the host part of the resource against a list of known good hosts), + can still use the indexer to retrieve the raw value of the resource / scope. + + If a resource is used, add "/.default" to it to transform it into a scope, e.g. "https://graph.microsoft.com/.default" is the OAuth2 scope for "https://graph.microsoft.com" resource. + MSAL only works with scopes. + @@ -759,6 +787,7 @@ 4.53.0.0 4.54.0.0 4.54.1.0 + 4.55.0.0 @@ -775,7 +804,13 @@ If it's not provided by the web API, it's computed from the Resource. To be added. - To be added. + + Clients that perform resource validation (e.g. by comparing the host part of the resource against a list of known good hosts), + can still use the indexer to retrieve the raw value of the resource / scope. + + If a resource is used, add "/.default" to it to transform it into a scope, e.g. "https://graph.microsoft.com/.default" is the OAuth2 scope for "https://graph.microsoft.com" resource. + MSAL only works with scopes. + diff --git a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml index 070efd99c..9fec36699 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml @@ -18,6 +18,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -51,6 +52,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml index 804a5dcf1..f18d5c882 100644 --- a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenAcquirerFactory @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -103,6 +106,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml index fc235133a..a82d1e47a 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -32,6 +33,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml index c7fcd6140..6c136a27b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -33,6 +34,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml index 646864eda..efbb47310 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -39,6 +40,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -68,6 +70,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml index 6fd2f28c2..393420eec 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -62,6 +64,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.IdentityModel.Validators.AadIssuerValidator diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml index 94cf5e0f4..d26c1c51c 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -40,6 +41,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml index 12812232e..fe8dbb571 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Attribute @@ -48,6 +49,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -78,6 +80,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -123,6 +126,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -148,6 +152,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -173,6 +178,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml index 4a00d37ca..eee0c7dff 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Attribute @@ -49,6 +50,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -79,6 +81,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -120,6 +123,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -146,6 +150,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -171,6 +176,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -204,6 +210,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml index f92f56cad..0d0b70e62 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -36,6 +37,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml index 736a3dc32..1c1078584 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -39,6 +40,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml index 4a062db8b..f72b0193c 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml index 99314c0a3..a67bfd3fb 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -83,6 +85,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -119,6 +122,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -157,6 +161,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -192,6 +197,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -229,6 +235,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -265,6 +272,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml index 9cffb5ed4..a9f80efcc 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -71,6 +73,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -104,6 +107,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -137,6 +141,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -168,6 +173,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.Caching.Memory.MemoryCacheOptions @@ -198,6 +204,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Func<System.Exception,System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml index 473102f04..421222afb 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml index 446426e7e..66004bbf3 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -70,6 +72,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml index 70be8c5f8..673e7dd49 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -77,6 +79,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -111,6 +114,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -146,6 +150,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -182,6 +187,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml index 5dcbcdc5c..6b56447c3 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -53,6 +54,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -83,6 +85,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -107,6 +110,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -137,6 +141,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -169,6 +174,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -198,6 +204,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml index a06a69b71..b9e29aba4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml index 7157a1d76..460e8c050 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.CancellationToken @@ -99,6 +102,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Nullable<System.DateTimeOffset> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml index 67829018b..6e77e7430 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -76,6 +78,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -109,6 +112,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml index 0a1f555e4..f9a7bc2e7 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -50,6 +51,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -81,6 +83,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -117,6 +120,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -150,6 +154,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -187,6 +192,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -223,6 +229,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -257,6 +264,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -291,6 +299,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -325,6 +334,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Byte[]> @@ -361,6 +371,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -395,6 +406,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -431,6 +443,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -467,6 +480,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml index f8220679b..cae0d9608 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.Controller @@ -63,6 +64,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -94,6 +96,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -153,6 +156,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -200,6 +204,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -247,6 +252,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -303,6 +309,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml index 59caafba5..9c1a72996 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -50,6 +51,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml index 76779be17..0174b027b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -55,6 +56,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -85,6 +87,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.ILoginErrorAccessor @@ -116,6 +119,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -147,6 +151,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -178,6 +183,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml index a9fa16355..f3220083d 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -50,6 +51,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.IActionResult diff --git a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml index a15bec688..6395bb34d 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IMvcBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml index 3860c00c6..b32b11bbe 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -34,6 +35,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -54,6 +56,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml index 55a7b90b3..bba823ff7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml index d149f5027..f3b0e85fa 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -114,6 +117,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml index 10b495462..359c6b80c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Owin.IAppBuilder @@ -87,6 +89,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Owin.IAppBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml index 694b13191..0d81a7fbd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.AuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml index 47180c742..fb9762b72 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml index 96b0e8c35..edc1b0c18 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.AuthenticationHandler<Microsoft.Identity.Web.AppServicesAuthenticationOptions> @@ -38,6 +39,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -54,7 +56,8 @@ Constructor for the AppServiceAuthenticationHandler. Note the parameters are required by the base class. - To be added. + Note the parameters are required by the base class. + @@ -70,6 +73,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticateResult> diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml index 20dccd4f9..63bdbffb8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -60,6 +62,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml index 68082db32..60db01b1d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions @@ -34,6 +35,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml index a389f8519..44fa66c9f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -39,6 +40,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -71,6 +73,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -108,6 +111,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -149,6 +153,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -186,6 +191,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -227,6 +233,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -258,6 +265,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -294,6 +302,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml index fcf8a9371..a668cf30d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Builder.IApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml index 2af926d1a..c37d386d9 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Mvc.Filters.ExceptionFilterAttribute @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -62,6 +64,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -87,6 +90,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -115,6 +119,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -140,6 +145,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -165,6 +171,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml index cbef8de29..74e75ffc4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.ValueTuple<System.Boolean,Microsoft.AspNetCore.Mvc.IActionResult>> diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml index 18847e490..f294270b0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -67,6 +69,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -100,6 +103,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml index fc1582df5..af1d86863 100644 --- a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -22,6 +23,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -52,6 +54,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -59,6 +62,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 T @@ -105,6 +109,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -112,6 +117,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 T @@ -157,6 +163,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -164,6 +171,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 T @@ -210,6 +218,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -217,6 +226,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 T diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml index 2d9784cdd..744719bb7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.CredentialDescription @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -71,6 +73,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -101,6 +104,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -131,6 +135,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -165,6 +170,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -201,6 +207,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -235,6 +242,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -271,6 +279,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -307,6 +316,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -346,6 +356,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateDescription @@ -384,6 +395,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -414,6 +426,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml index 37f5317a0..f836a14e1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Enum @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -73,6 +75,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -102,6 +105,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -131,6 +135,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -160,6 +165,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource @@ -189,6 +195,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificateSource diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml index 05c8bb041..039b80c1e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -70,6 +72,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -101,6 +104,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml index 13fc5c837..41300a471 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -74,6 +76,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -103,6 +106,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -132,6 +136,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -161,6 +166,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -190,6 +196,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -219,6 +226,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -248,6 +256,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -277,6 +286,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -306,6 +316,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -335,6 +346,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -364,6 +376,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -393,6 +406,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -422,6 +436,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -451,6 +466,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -480,6 +496,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -510,6 +527,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -540,6 +558,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml index 10f3a6521..72696addd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -114,6 +117,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -148,6 +152,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -182,6 +187,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -216,6 +222,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -250,6 +257,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -284,6 +292,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -318,6 +327,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -352,6 +362,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml index 8e091a5e6..b0e0bae4d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Claims.ClaimsPrincipal @@ -84,6 +86,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml index fd8d6bcc8..98628e4f4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -79,6 +81,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Nullable<System.DateTimeOffset> @@ -109,6 +112,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml index 5337e0088..a5c3a6eb7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -70,6 +72,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Nullable<System.DateTimeOffset> @@ -100,6 +103,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> @@ -134,6 +138,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.Identity.Web/Constants.xml b/dotnet/xml/Microsoft.Identity.Web/Constants.xml index 9588255a5..b18103500 100644 --- a/dotnet/xml/Microsoft.Identity.Web/Constants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/Constants.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -105,6 +108,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -135,6 +139,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -165,6 +170,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -195,6 +201,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -224,6 +231,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -254,6 +262,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -284,6 +293,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -313,6 +323,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -343,6 +354,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -372,6 +384,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml index c16518a93..f1065f418 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -114,6 +117,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml index c7e2fc032..7608ade0b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -68,6 +70,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions @@ -101,6 +104,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml index 70ad2604e..f01b1d36b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.DefaultCredentialsLoader @@ -59,6 +60,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -110,6 +113,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<System.Security.Cryptography.X509Certificates.X509Certificate2> @@ -144,6 +148,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -181,6 +186,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -214,6 +220,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -248,6 +255,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml index 9e55fad92..2aeeb38fb 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -48,6 +49,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -102,6 +105,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IDictionary<Microsoft.Identity.Abstractions.CredentialSource,Microsoft.Identity.Abstractions.ICredentialSourceLoader> @@ -136,6 +140,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task @@ -174,6 +179,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.CredentialDescription> @@ -212,6 +218,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml index 16ba7e283..b2a9334ac 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -49,6 +50,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -83,6 +85,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -120,6 +123,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -159,6 +163,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml index f542e2bcf..141c90061 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -83,6 +85,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml index aa88e2ab8..02ec462a3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -102,6 +104,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -166,6 +169,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -234,6 +238,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -307,6 +312,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -373,6 +379,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml index 693d0bf49..1cc10e648 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -39,6 +40,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -59,6 +61,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -84,6 +87,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.DownstreamWebApiOptions @@ -110,6 +114,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Action<System.Net.Http.HttpRequestMessage> @@ -137,6 +142,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -163,6 +169,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Net.Http.HttpMethod @@ -188,6 +195,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -216,6 +224,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml index 8a7ec4768..b5f510c15 100644 --- a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -22,6 +23,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -53,6 +55,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -60,6 +63,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -94,6 +98,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -101,6 +106,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml index 9bbf66d21..9291bd25f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -34,6 +35,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -59,6 +61,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml index 45d8ffc65..2d3b5cbbf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -34,6 +35,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -60,6 +62,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -85,6 +88,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -111,6 +115,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml index 1c4c836ed..63b59105d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -53,6 +54,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml index a6df3913d..fcc187c8a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -42,6 +43,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -80,6 +82,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -121,6 +124,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -164,6 +168,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -210,6 +215,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -296,6 +302,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml index 2c08f5167..2c98ddcad 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -33,6 +34,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -62,6 +64,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -87,6 +90,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml index eac8be708..8dc42b96d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -33,6 +34,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Net.Http.DelegatingHandler @@ -68,6 +70,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Net.Http.DelegatingHandler diff --git a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml index b5d86561a..1d5052a67 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -37,6 +38,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -81,6 +83,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -123,6 +126,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -170,6 +174,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.String> @@ -214,6 +219,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -258,6 +264,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -300,6 +307,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -346,6 +354,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -395,6 +404,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -426,6 +436,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -461,6 +472,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -499,6 +511,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml index 3f3893776..031240030 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml index c2d7b7dc7..60a7c80f2 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -17,6 +18,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -43,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -50,6 +53,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -87,6 +91,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -94,6 +99,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -125,6 +131,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -132,6 +139,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -165,6 +173,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -172,6 +181,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -205,6 +215,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -212,6 +223,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml index 589347ce7..be2200819 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -22,6 +23,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -51,6 +53,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -58,6 +61,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -83,6 +87,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -90,6 +95,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -122,6 +128,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -129,6 +136,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml index 7c1fbc9b4..890247d43 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -64,6 +66,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml index c6405775f..5abee2f7a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -77,6 +79,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml index 60a568e9b..98405747a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -36,6 +37,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml index 853415528..4d49579c4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Net.Http.DelegatingHandler @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -64,6 +66,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -93,6 +96,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.ITokenAcquisition diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml index 54c282719..bf7447069 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -34,6 +35,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -56,6 +58,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -82,6 +85,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -108,6 +112,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -137,6 +142,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -163,6 +169,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -190,6 +197,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -215,6 +223,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml index b9c1df80f..6f723d985 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -74,6 +76,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder @@ -107,6 +110,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -146,6 +150,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml index e20a93cdd..d5b074f83 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -38,6 +39,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -58,6 +60,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -87,6 +90,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml index 498da6b27..34516ccf8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -46,6 +47,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -84,6 +86,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.Configuration.IConfigurationSection @@ -115,6 +118,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml index 855ce1683..9a652f3e4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServerSideBlazorBuilder @@ -65,6 +67,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml index 86b4f26db..17732d9bf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -36,6 +37,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -61,6 +63,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -86,6 +89,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -123,6 +127,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -152,6 +157,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -177,6 +183,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml index 24346d64f..4eef586d0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -103,6 +106,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -145,6 +149,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -173,6 +178,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.CertificatelessOptions @@ -203,6 +209,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -233,6 +240,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -263,6 +271,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -293,6 +302,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -323,6 +333,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -353,6 +364,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -383,6 +395,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -416,6 +429,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -448,6 +462,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -478,6 +493,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean @@ -514,6 +530,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -544,6 +561,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -574,6 +592,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -616,6 +635,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -644,6 +664,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -675,6 +696,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml index 3486921b7..42f458ed5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -66,6 +68,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml index 8d20ab6ca..0948cd6d8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml index 23bdc34de..fdf83709a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -79,6 +81,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -125,6 +128,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml index f9cd2c099..1b8da2a27 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityWebApiAuthenticationBuilder @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml index 31dca3845..ee989f139 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml index 29dd0b061..ec7e51f09 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -70,6 +72,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml index e44abd4de..a7d6e9af1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -81,6 +83,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -130,6 +133,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml index 45b143040..79fd148d5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.MicrosoftIdentityWebAppAuthenticationBuilder @@ -36,6 +37,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml index 994c9cc0f..a8317a039 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml index e29ee02a2..1fc5ac6a4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Exception @@ -47,6 +48,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -81,6 +83,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Client.MsalUiRequiredException @@ -111,6 +114,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String[] @@ -141,6 +145,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml index 7a65b99c1..27fee159a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -43,6 +44,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -114,6 +117,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml index 6bb94902b..68c525fe0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -65,6 +67,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml index 2f81fba34..06cab61b1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -35,6 +36,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -66,6 +68,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml index 775ca862f..afe71a6ac 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -66,6 +68,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -91,6 +94,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -116,6 +120,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml index cd73acf29..f4fdc808b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -68,6 +70,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -93,6 +96,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -118,6 +122,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -143,6 +148,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -168,6 +174,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml index f092c9f26..2221278ab 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -45,6 +46,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml index b18422410..ea5c87240 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml @@ -8,6 +8,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.TokenCredential @@ -31,6 +32,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -54,6 +56,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.AccessToken @@ -82,6 +85,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml index 86e5bb8e1..d907e6ed3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -48,6 +49,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -75,6 +77,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.IServiceProvider @@ -115,6 +118,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.Configuration.IConfiguration @@ -146,6 +150,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.String @@ -181,6 +186,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -227,6 +233,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -285,6 +292,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -321,6 +329,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -354,6 +363,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -393,6 +403,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Void @@ -423,6 +434,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.IServiceProvider @@ -454,6 +466,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Extensions.DependencyInjection.ServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml index b4900a640..679a45be0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml @@ -8,6 +8,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.TokenCredential @@ -31,6 +32,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -54,6 +56,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.AccessToken @@ -82,6 +85,7 @@ Microsoft.Identity.Web.Azure 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml index a34eff63c..18942d15b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.TokenCredential @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -66,6 +68,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.AccessToken @@ -96,6 +99,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml index 91b85e6ab..309f62b11 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -44,6 +45,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -69,6 +71,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.CancellationToken @@ -99,6 +102,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -130,6 +134,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Client.AppConfig.PoPAuthenticationConfiguration diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml index a912c1a72..cd862168a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml @@ -10,6 +10,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.TokenCredential @@ -41,6 +42,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 @@ -66,6 +68,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Azure.Core.AccessToken @@ -96,6 +99,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml index 377e90e6d..8a41ee864 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml @@ -15,6 +15,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 System.Object @@ -47,6 +48,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -101,6 +103,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -145,6 +148,7 @@ 2.11.1.0 2.12.4.0 2.13.0.0 + 2.13.1.0 Microsoft.Identity.Client.IConfidentialClientApplication diff --git a/dotnet/xml/PackageInformation/msal-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-dotnet-latest.json index 0879c9c4a..078295db5 100644 --- a/dotnet/xml/PackageInformation/msal-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-dotnet-latest.json @@ -1 +1 @@ -{"msal-dotnet-latest":{"Microsoft.Identity.Client":{"Name":"Microsoft.Identity.Client","Version":"4.54.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Client.Broker":{"Name":"Microsoft.Identity.Client.Broker","Version":"4.54.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Client.Desktop":{"Name":"Microsoft.Identity.Client.Desktop","Version":"4.54.1","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-dotnet-latest":{"Microsoft.Identity.Client":{"Name":"Microsoft.Identity.Client","Version":"4.55.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Client.Broker":{"Name":"Microsoft.Identity.Client.Broker","Version":"4.55.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Client.Desktop":{"Name":"Microsoft.Identity.Client.Desktop","Version":"4.55.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json index 32c9fad13..a1e709b33 100644 --- a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json @@ -1 +1 @@ -{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file From 55b5698f90f4d5a9a3aacefecc9268427bef20dd Mon Sep 17 00:00:00 2001 From: Docs Allowlist Management Date: Mon, 31 Jul 2023 09:05:07 +0000 Subject: [PATCH 19/63] Update description rely on AI ability --- msal-dotnet-articles/advanced/client-credential-multi-tenant.md | 1 + 1 file changed, 1 insertion(+) diff --git a/msal-dotnet-articles/advanced/client-credential-multi-tenant.md b/msal-dotnet-articles/advanced/client-credential-multi-tenant.md index 09b6669ad..9d225c75a 100644 --- a/msal-dotnet-articles/advanced/client-credential-multi-tenant.md +++ b/msal-dotnet-articles/advanced/client-credential-multi-tenant.md @@ -1,5 +1,6 @@ --- title: Using MSAL.NET for client credential flow in multi-tenant services +description: Learn Microsoft's Advanced Client Credential Multi-Tenant with MSAL.NET, token caching, and Microsoft.Identity.Web for ASP.NET Core. --- # Using MSAL.NET for client credential flow in multi-tenant services From 9a5e1a1725bfd259c41c9812022f720c56a5a3de Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 31 Jul 2023 16:10:56 +0000 Subject: [PATCH 20/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=376776&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- ...oftIdentity_Pages_Account_AccessDenied.xml | 10 +++ ..._MicrosoftIdentity_Pages_Account_Error.xml | 10 +++ ...rosoftIdentity_Pages_Account_SignedOut.xml | 10 +++ ...eas_MicrosoftIdentity_Pages__ViewStart.xml | 10 +++ .../msal-model-dotnet-latest.xml | 22 +++--- .../msal-web-dotnet-latest.xml | 32 ++++---- .../CredentialDescription.xml | 22 +++--- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 +- .../WebApiBuilders.xml | 2 + .../OwinTokenAcquirerFactory.xml | 4 + .../IJwtBearerMiddlewareDiagnostics.xml | 2 + .../IOpenIdConnectMiddlewareDiagnostics.xml | 2 + .../JwtBearerMiddlewareDiagnostics.xml | 3 + ...icrosoftIdentityIssuerValidatorFactory.xml | 3 + .../OpenIdConnectMiddlewareDiagnostics.xml | 3 + .../RequiredScopeAttribute.xml | 6 ++ .../RequiredScopeOrAppPermissionAttribute.xml | 7 ++ .../RolesRequiredHttpContextExtensions.xml | 2 + .../ScopesRequiredHttpContextExtensions.xml | 2 + .../DistributedTokenCacheAdapterExtension.xml | 2 + .../MsalDistributedTokenCacheAdapter.xml | 8 ++ ...salDistributedTokenCacheAdapterOptions.xml | 7 ++ .../InMemoryTokenCacheProviderExtension.xml | 2 + .../MsalMemoryTokenCacheOptions.xml | 3 + .../MsalMemoryTokenCacheProvider.xml | 6 ++ .../MsalSessionTokenCacheProvider.xml | 7 ++ .../SessionTokenCacheProviderExtension.xml | 3 + .../CacheSerializerHints.xml | 4 + .../IMsalTokenCacheProvider.xml | 4 + .../MsalAbstractTokenCacheProvider.xml | 14 ++++ .../AccountController.xml | 7 ++ .../AccessDeniedModel.xml | 3 + .../ErrorModel.xml | 6 ++ .../SignedOutModel.xml | 3 + .../ServiceCollectionExtensions.xml | 2 + .../AadIssuerValidatorOptions.xml | 3 + .../AccountExtensions.xml | 2 + .../ApiControllerExtensions.xml | 4 + .../AppBuilderExtension.xml | 3 + ...ervicesAuthenticationBuilderExtensions.xml | 2 + .../AppServicesAuthenticationDefaults.xml | 2 + .../AppServicesAuthenticationHandler.xml | 3 + .../AppServicesAuthenticationInformation.xml | 3 + .../AppServicesAuthenticationOptions.xml | 2 + ...ServicesAuthenticationTokenAcquisition.xml | 9 +++ .../ApplicationBuilderExtensions.xml | 2 + .../AuthorizeForScopesAttribute.xml | 7 ++ ...ionsAuthenticationHttpContextExtension.xml | 2 + ...reIdentityForKubernetesClientAssertion.xml | 4 + .../BaseRequestExtensions.xml | 10 +++ .../CertificateDescription.xml | 13 ++++ .../CertificateSource.xml | 7 ++ .../CertificatelessOptions.xml | 4 + .../Microsoft.Identity.Web/ClaimConstants.xml | 19 +++++ .../ClaimsPrincipalExtensions.xml | 11 +++ .../ClaimsPrincipalFactory.xml | 3 + .../ClientAssertion.xml | 4 + .../ClientAssertionProviderBase.xml | 5 ++ .../xml/Microsoft.Identity.Web/Constants.xml | 13 ++++ .../ControllerBaseExtensions.xml | 4 + .../CookiePolicyOptionsExtensions.xml | 4 + .../DefaultCertificateLoader.xml | 8 ++ .../DefaultCredentialsLoader.xml | 7 ++ .../DownstreamWebApi.xml | 5 ++ .../DownstreamWebApiExtensions.xml | 3 + .../DownstreamWebApiGenericExtensions.xml | 7 ++ .../DownstreamWebApiOptions.xml | 9 +++ .../GraphServiceCollectionExtensions.xml | 6 ++ .../IAuthRequiredScopeMetadata.xml | 3 + ...thRequiredScopeOrAppPermissionMetadata.xml | 5 ++ .../ICertificateLoader.xml | 2 + .../IDownstreamWebApi.xml | 7 ++ .../ILoginErrorAccessor.xml | 4 + ...AuthenticationDelegatingHandlerFactory.xml | 3 + .../ITokenAcquisition.xml | 13 ++++ .../ManagedIdentityClientAssertion.xml | 3 + .../MicrosoftGraphExtensions.xml | 12 +++ .../MicrosoftGraphOptions.xml | 8 ++ ...dentityAppAuthenticationMessageHandler.xml | 3 + ...ityAppCallsWebApiAuthenticationBuilder.xml | 3 + ...lsWebApiAuthenticationBuilderExtension.xml | 2 + ...entityAuthenticationBaseMessageHandler.xml | 4 + ...osoftIdentityAuthenticationBaseOptions.xml | 9 +++ ...sageHandlerHttpClientBuilderExtensions.xml | 5 ++ ...ityAuthenticationMessageHandlerOptions.xml | 4 + ...osoftIdentityBaseAuthenticationBuilder.xml | 4 + ...ntityBlazorServiceCollectionExtensions.xml | 3 + ...tityConsentAndConditionalAccessHandler.xml | 7 ++ .../MicrosoftIdentityOptions.xml | 22 ++++++ ...entityUserAuthenticationMessageHandler.xml | 3 + ...oftIdentityWebApiAuthenticationBuilder.xml | 2 + ...yWebApiAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebApiServiceCollectionExtensions.xml | 2 + ...oftIdentityWebAppAuthenticationBuilder.xml | 3 + ...yWebAppAuthenticationBuilderExtensions.xml | 4 + ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebAppServiceCollectionExtensions.xml | 2 + ...osoftIdentityWebChallengeUserException.xml | 5 ++ .../PolicyBuilderExtensions.xml | 4 + .../RequiredScopeExtensions.xml | 3 + ...RequiredScopeOrAppPermissionExtensions.xml | 3 + .../ScopeAuthorizationRequirement.xml | 5 ++ ...rAppPermissionAuthorizationRequirement.xml | 7 ++ .../ServiceCollectionExtensions.xml | 2 + .../TokenAcquirerAppTokenCredential.xml | 4 + .../TokenAcquirerFactory.xml | 13 ++++ .../TokenAcquirerTokenCredential.xml | 4 + .../TokenAcquisitionAppTokenCredential.xml | 4 + .../TokenAcquisitionOptions.xml | 5 ++ .../TokenAcquisitionTokenCredential.xml | 4 + .../TokenCacheExtensions.xml | 4 + .../EventLogLevel.xml | 7 ++ .../IIdentityLogger.xml | 3 + .../ITelemetryClient.xml | 7 ++ .../LogEntry.xml | 5 ++ .../NullIdentityModelLogger.xml | 4 + .../NullTelemetryClient.xml | 8 ++ .../ObservabilityConstants.xml | 5 ++ .../TelemetryEventDetails.xml | 11 +++ .../JsonClaimValueTypes.xml | 4 + .../JsonWebToken.xml | 41 ++++++++++ .../JsonWebTokenHandler.xml | 37 +++++++++ .../JwtConstants.xml | 11 +++ .../JwtHeaderParameterNames.xml | 16 ++++ .../JwtRegisteredClaimNames.xml | 30 +++++++ .../JwtTokenUtilities.xml | 8 ++ .../KeyVaultCryptoProvider.xml | 5 ++ .../KeyVaultKeyWrapProvider.xml | 8 ++ ...aultSecurityKey+AuthenticationCallback.xml | 1 + .../KeyVaultSecurityKey.xml | 6 ++ .../KeyVaultSignatureProvider.xml | 6 ++ .../ISafeLogSecurityArtifact.xml | 2 + .../IdentityModelEventSource.xml | 21 +++++ .../IdentityModelTelemetryUtil.xml | 5 ++ .../LogHelper.xml | 28 +++++++ .../LoggerContext.xml | 8 ++ .../TextWriterEventListener.xml | 7 ++ .../IdentityLoggerAdapter.xml | 4 + .../ManagedKeyVaultSecurityKey.xml | 4 + .../InvalidConfigurationException.xml | 5 ++ ...LastKnownGoodConfigurationCacheOptions.xml | 3 + .../OpenIdConnectConfigurationValidator.xml | 4 + .../ActiveDirectoryOpenIdConnectEndpoints.xml | 4 + .../IdTokenValidator.xml | 1 + .../OpenIdConnectConfiguration.xml | 78 +++++++++++++++++++ .../OpenIdConnectConfigurationRetriever.xml | 6 ++ .../OpenIdConnectGrantTypes.xml | 5 ++ .../OpenIdConnectMessage.xml | 56 +++++++++++++ .../OpenIdConnectParameterNames.xml | 43 ++++++++++ .../OpenIdConnectPrompt.xml | 5 ++ .../OpenIdConnectProtocolException.xml | 5 ++ ...dConnectProtocolInvalidAtHashException.xml | 5 ++ ...IdConnectProtocolInvalidCHashException.xml | 5 ++ ...IdConnectProtocolInvalidNonceException.xml | 5 ++ ...IdConnectProtocolInvalidStateException.xml | 5 ++ ...OpenIdConnectProtocolValidationContext.xml | 8 ++ .../OpenIdConnectProtocolValidator.xml | 27 +++++++ .../OpenIdConnectRequestType.xml | 4 + .../OpenIdConnectResponseMode.xml | 4 + .../OpenIdConnectResponseType.xml | 9 +++ .../OpenIdConnectScope.xml | 8 ++ .../OpenIdConnectSessionProperties.xml | 4 + .../OpenIdProviderMetadataNames.xml | 47 +++++++++++ .../CnfDecryptionKeysResolverAsync.xml | 1 + .../ConfirmationClaimTypes.xml | 6 ++ .../HttpClientProvider.xml | 1 + .../NonceValidatorAsync.xml | 1 + .../PopKeyResolverAsync.xml | 1 + .../PopKeyResolverFromKeyIdAsync.xml | 1 + .../ReplayValidatorAsync.xml | 1 + .../SignatureValidatorAsync.xml | 1 + .../SignedHttpRequestClaimTypes.xml | 10 +++ .../SignedHttpRequestConstants.xml | 4 + .../SignedHttpRequestCreationException.xml | 5 ++ .../SignedHttpRequestCreationParameters.xml | 13 ++++ .../SignedHttpRequestDescriptor.xml | 11 +++ .../SignedHttpRequestHandler.xml | 7 ++ ...gnedHttpRequestInvalidAtClaimException.xml | 5 ++ ...ignedHttpRequestInvalidBClaimException.xml | 5 ++ ...nedHttpRequestInvalidCnfClaimException.xml | 5 ++ ...ignedHttpRequestInvalidHClaimException.xml | 5 ++ ...ignedHttpRequestInvalidMClaimException.xml | 5 ++ ...dHttpRequestInvalidNonceClaimException.xml | 6 ++ ...ignedHttpRequestInvalidPClaimException.xml | 5 ++ ...ignedHttpRequestInvalidPopKeyException.xml | 5 ++ ...ignedHttpRequestInvalidQClaimException.xml | 5 ++ ...edHttpRequestInvalidSignatureException.xml | 5 ++ ...gnedHttpRequestInvalidTsClaimException.xml | 5 ++ ...ignedHttpRequestInvalidUClaimException.xml | 5 ++ .../SignedHttpRequestUtilities.xml | 4 + .../SignedHttpRequestValidationContext.xml | 10 +++ .../SignedHttpRequestValidationException.xml | 5 ++ .../SignedHttpRequestValidationParameters.xml | 25 ++++++ .../SignedHttpRequestValidationResult.xml | 7 ++ ...SecurityTokenServiceTypeRoleDescriptor.xml | 5 ++ .../WsFederationConfiguration.xml | 5 ++ .../WsFederationConfigurationRetriever.xml | 6 ++ .../WsFederationConfigurationValidator.xml | 3 + .../WsFederationConstants+Attributes.xml | 6 ++ .../WsFederationConstants+Elements.xml | 8 ++ .../WsFederationConstants+KeyUse.xml | 2 + .../WsFederationConstants+Namespaces.xml | 1 + .../WsFederationConstants+Types.xml | 3 + ...ederationConstants+WsFederationActions.xml | 6 ++ ...rationConstants+WsFederationFaultCodes.xml | 12 +++ ...onConstants+WsFederationParameterNames.xml | 21 +++++ .../WsFederationConstants.xml | 4 + .../WsFederationException.xml | 5 ++ .../WsFederationMessage.xml | 32 ++++++++ .../WsFederationMetadataSerializer.xml | 10 +++ .../WsFederationReadException.xml | 5 ++ .../AuthenticationProtocolMessage.xml | 14 ++++ .../ConfigurationManager`1.xml | 15 ++++ .../ConfigurationValidationResult.xml | 4 + .../FileDocumentRetriever.xml | 3 + .../HttpDocumentRetriever.xml | 9 +++ .../HttpRequestData.xml | 8 ++ .../IConfigurationManager`1.xml | 3 + .../IConfigurationRetriever`1.xml | 2 + .../IConfigurationValidator`1.xml | 2 + .../IDocumentRetriever.xml | 2 + .../StaticConfigurationManager`1.xml | 5 ++ .../X509CertificateValidationMode.xml | 2 + .../TestTokenCreator.xml | 25 ++++++ .../LKGConfigurationCacheOptions.xml | 7 ++ .../AuthenticationInformation.xml | 9 +++ .../ClaimProperties.xml | 9 +++ .../SamlAction.xml | 5 ++ .../SamlAdvice.xml | 7 ++ .../SamlAssertion.xml | 14 ++++ .../SamlAttribute.xml | 9 +++ .../SamlAttributeKeyComparer+AttributeKey.xml | 5 ++ .../SamlAttributeKeyComparer.xml | 4 + .../SamlAttributeStatement.xml | 4 + .../SamlAudienceRestrictionCondition.xml | 4 + .../SamlAuthenticationStatement.xml | 7 ++ .../SamlAuthorityBinding.xml | 5 ++ .../SamlAuthorizationDecisionStatement.xml | 8 ++ .../SamlCondition.xml | 2 + .../SamlConditions.xml | 6 ++ .../SamlConstants+AccessDecision.xml | 4 + .../SamlConstants+AuthenticationMethods.xml | 13 ++++ .../SamlConstants+Types.xml | 26 +++++++ .../SamlConstants.xml | 18 +++++ .../SamlDoNotCacheCondition.xml | 2 + .../SamlEvidence.xml | 6 ++ .../SamlSecurityToken.xml | 10 +++ .../SamlSecurityTokenException.xml | 5 ++ .../SamlSecurityTokenHandler.xml | 49 ++++++++++++ .../SamlSecurityTokenReadException.xml | 5 ++ .../SamlSecurityTokenWriteException.xml | 5 ++ .../SamlSerializer.xml | 34 ++++++++ .../SamlStatement.xml | 2 + .../SamlSubject.xml | 12 +++ .../SamlSubjectStatement.xml | 3 + .../AuthenticationInformation.xml | 8 ++ .../ClaimProperties.xml | 8 ++ .../Saml2Action.xml | 4 + .../Saml2Advice.xml | 5 ++ .../Saml2Assertion.xml | 14 ++++ .../Saml2Attribute.xml | 10 +++ .../Saml2AttributeStatement.xml | 5 ++ .../Saml2AudienceRestriction.xml | 4 + .../Saml2AuthenticationContext.xml | 7 ++ .../Saml2AuthenticationStatement.xml | 8 ++ .../Saml2AuthorizationDecisionStatement.xml | 7 ++ .../Saml2Conditions.xml | 8 ++ .../Saml2Constants+AccessDecision.xml | 4 + .../Saml2Constants+Attributes.xml | 27 +++++++ .../Saml2Constants+ConfirmationMethods.xml | 7 ++ .../Saml2Constants+Elements.xml | 34 ++++++++ .../Saml2Constants+NameIdentifierFormats.xml | 19 +++++ .../Saml2Constants+Types.xml | 24 ++++++ .../Saml2Constants.xml | 7 ++ .../Saml2Evidence.xml | 8 ++ .../Saml2Id.xml | 4 + .../Saml2NameIdentifier.xml | 9 +++ .../Saml2ProxyRestriction.xml | 4 + .../Saml2SecurityToken.xml | 9 +++ .../Saml2SecurityTokenException.xml | 5 ++ .../Saml2SecurityTokenHandler.xml | 52 +++++++++++++ .../Saml2SecurityTokenReadException.xml | 5 ++ .../Saml2SecurityTokenWriteException.xml | 5 ++ .../Saml2Serializer.xml | 46 +++++++++++ .../Saml2Statement.xml | 2 + .../Saml2Subject.xml | 5 ++ .../Saml2SubjectConfirmation.xml | 6 ++ .../Saml2SubjectConfirmationData.xml | 8 ++ .../Saml2SubjectLocality.xml | 4 + .../AlgorithmValidator.xml | 1 + .../AsymmetricSecurityKey.xml | 4 + .../AsymmetricSignatureProvider.xml | 13 ++++ .../AudienceValidator.xml | 1 + .../AuthenticatedEncryptionProvider.xml | 13 ++++ .../AuthenticatedEncryptionResult.xml | 6 ++ .../Base64UrlEncoder.xml | 6 ++ .../BaseConfiguration.xml | 7 ++ .../BaseConfigurationManager.xml | 17 ++++ .../CallContext.xml | 3 + .../CollectionUtilities.xml | 2 + .../CompressionAlgorithms.xml | 3 + .../CompressionProviderFactory.xml | 7 ++ .../CryptoProviderCache.xml | 7 ++ .../CryptoProviderCacheOptions.xml | 4 + .../CryptoProviderFactory.xml | 27 +++++++ .../DateTimeUtil.xml | 6 ++ .../DeflateCompressionProvider.xml | 8 ++ .../ECDsaSecurityKey.xml | 8 ++ .../EcdhKeyExchangeProvider.xml | 4 + .../EncryptingCredentials.xml | 10 +++ .../EpochTime.xml | 4 + .../ICompressionProvider.xml | 5 ++ .../ICryptoProvider.xml | 4 + .../ISecurityTokenValidator.xml | 5 ++ .../ITokenReplayCache.xml | 3 + .../InMemoryCryptoProviderCache.xml | 10 +++ .../IssuerSigningKeyResolver.xml | 1 + ...erSigningKeyResolverUsingConfiguration.xml | 1 + .../IssuerSigningKeyValidator.xml | 1 + ...rSigningKeyValidatorUsingConfiguration.xml | 1 + .../IssuerValidator.xml | 1 + .../IssuerValidatorUsingConfiguration.xml | 1 + .../JsonWebAlgorithmsKeyTypes.xml | 4 + .../JsonWebKey.xml | 35 +++++++++ .../JsonWebKeyConverter.xml | 8 ++ .../JsonWebKeyECTypes.xml | 5 ++ .../JsonWebKeyParameterNames.xml | 26 +++++++ .../JsonWebKeySet.xml | 9 +++ .../JsonWebKeySetParameterNames.xml | 2 + .../JsonWebKeyUseNames.xml | 3 + .../KeyWrapProvider.xml | 9 +++ .../LifetimeValidator.xml | 1 + .../PrivateKeyStatus.xml | 4 + .../RsaKeyWrapProvider.xml | 9 +++ .../RsaSecurityKey.xml | 10 +++ .../SecurityAlgorithms.xml | 60 ++++++++++++++ .../SecurityKey.xml | 9 +++ .../SecurityKeyIdentifierClause.xml | 2 + .../SecurityToken.xml | 9 +++ .../SecurityTokenArgumentException.xml | 5 ++ ...ecurityTokenCompressionFailedException.xml | 5 ++ ...urityTokenDecompressionFailedException.xml | 5 ++ ...SecurityTokenDecryptionFailedException.xml | 5 ++ .../SecurityTokenDescriptor.xml | 15 ++++ ...SecurityTokenEncryptionFailedException.xml | 5 ++ ...ityTokenEncryptionKeyNotFoundException.xml | 5 ++ .../SecurityTokenException.xml | 6 ++ .../SecurityTokenExpiredException.xml | 7 ++ .../SecurityTokenHandler.xml | 15 ++++ ...SecurityTokenInvalidAlgorithmException.xml | 7 ++ .../SecurityTokenInvalidAudienceException.xml | 7 ++ .../SecurityTokenInvalidIssuerException.xml | 7 ++ .../SecurityTokenInvalidLifetimeException.xml | 8 ++ ...SecurityTokenInvalidSignatureException.xml | 5 ++ ...ecurityTokenInvalidSigningKeyException.xml | 6 ++ .../SecurityTokenInvalidTypeException.xml | 7 ++ .../SecurityTokenKeyWrapException.xml | 5 ++ .../SecurityTokenMalformedException.xml | 5 ++ .../SecurityTokenNoExpirationException.xml | 5 ++ .../SecurityTokenNotYetValidException.xml | 7 ++ .../SecurityTokenReplayAddFailedException.xml | 5 ++ .../SecurityTokenReplayDetectedException.xml | 5 ++ ...rityTokenSignatureKeyNotFoundException.xml | 5 ++ ...SecurityTokenUnableToValidateException.xml | 8 ++ .../SecurityTokenValidationException.xml | 5 ++ .../SignatureProvider.xml | 12 +++ .../SignatureValidator.xml | 1 + .../SignatureValidatorUsingConfiguration.xml | 1 + .../SigningCredentials.xml | 10 +++ .../SymmetricKeyWrapProvider.xml | 10 +++ .../SymmetricSecurityKey.xml | 6 ++ .../SymmetricSignatureProvider.xml | 13 ++++ .../TokenContext.xml | 3 + .../TokenDecryptionKeyResolver.xml | 1 + .../TokenHandler.xml | 9 +++ .../TokenReader.xml | 1 + .../TokenReplayValidator.xml | 1 + .../TokenValidationParameters.xml | 66 ++++++++++++++++ .../TokenValidationResult.xml | 12 +++ .../TransformBeforeSignatureValidation.xml | 1 + .../TypeValidator.xml | 1 + .../UniqueId.xml | 6 ++ .../Utility.xml | 7 ++ .../ValidationFailure.xml | 4 + .../Validators.xml | 9 +++ .../X509EncryptingCredentials.xml | 4 + .../X509SecurityKey.xml | 14 ++++ .../X509SigningCredentials.xml | 4 + .../AadIssuerValidator.xml | 4 + .../AadTokenValidationParametersExtension.xml | 2 + .../CanonicalizingTransfrom.xml | 6 ++ .../DSigElement.xml | 4 + .../DSigSerializer.xml | 17 ++++ .../DelegatingXmlDictionaryReader.xml | 46 +++++++++++ .../DelegatingXmlDictionaryWriter.xml | 31 ++++++++ .../EnvelopedSignatureReader.xml | 7 ++ .../EnvelopedSignatureTransform.xml | 4 + .../EnvelopedSignatureWriter.xml | 10 +++ .../ExclusiveCanonicalizationTransform.xml | 5 ++ .../IXmlElementReader.xml | 4 + .../IssuerSerial.xml | 6 ++ .../Microsoft.IdentityModel.Xml/KeyInfo.xml | 10 +++ .../RSAKeyValue.xml | 6 ++ .../Microsoft.IdentityModel.Xml/Reference.xml | 12 +++ .../Microsoft.IdentityModel.Xml/Signature.xml | 8 ++ .../SignedInfo.xml | 8 ++ .../Microsoft.IdentityModel.Xml/Transform.xml | 4 + .../TransformFactory.xml | 7 ++ .../WsAddressing+Elements.xml | 3 + .../WsAddressing.xml | 3 + .../WsPolicy+Elements.xml | 2 + .../Microsoft.IdentityModel.Xml/WsPolicy.xml | 3 + .../WsTrustConstants+Elements.xml | 11 +++ .../WsTrustConstants+Namespaces.xml | 4 + .../WsTrustConstants.xml | 1 + .../WsTrustConstants_1_3+Actions.xml | 2 + .../WsTrustConstants_1_3.xml | 3 + .../WsTrustConstants_1_4+Actions.xml | 2 + .../WsTrustConstants_1_4.xml | 3 + .../WsTrustConstants_2005+Actions.xml | 2 + .../WsTrustConstants_2005.xml | 3 + .../WsUtility+Elements.xml | 3 + .../Microsoft.IdentityModel.Xml/WsUtility.xml | 3 + .../Microsoft.IdentityModel.Xml/X509Data.xml | 11 +++ .../XmlException.xml | 5 ++ .../XmlReadException.xml | 5 ++ .../XmlSignatureConstants+Attributes.xml | 9 +++ .../XmlSignatureConstants+Elements.xml | 29 +++++++ .../XmlSignatureConstants.xml | 13 ++++ .../XmlTokenStream.xml | 7 ++ .../XmlTokenStreamReader.xml | 4 + .../Microsoft.IdentityModel.Xml/XmlUtil.xml | 17 ++++ .../XmlValidationException.xml | 5 ++ .../XmlWriteException.xml | 5 ++ .../msal-model-dotnet-latest.json | 2 +- .../msal-web-dotnet-latest.json | 2 +- .../Deserializer.xml | 1 + .../JsonClaimValueTypes.xml | 4 + .../JsonExtensions.xml | 7 ++ .../JwtConstants.xml | 8 ++ .../JwtHeader.xml | 25 ++++++ .../JwtHeaderParameterNames.xml | 16 ++++ .../JwtPayload.xml | 30 +++++++ .../JwtRegisteredClaimNames.xml | 28 +++++++ .../JwtSecurityToken.xml | 35 +++++++++ .../JwtSecurityTokenHandler.xml | 46 +++++++++++ .../Serializer.xml | 1 + 450 files changed, 3665 insertions(+), 44 deletions(-) diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml index 67db72581..3a3ec7969 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml @@ -13,6 +13,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -67,6 +69,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -99,6 +102,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -126,6 +130,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -158,6 +163,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -190,6 +196,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel @@ -216,6 +223,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -248,6 +256,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -280,6 +289,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml index 012dc03b3..7724c01a5 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml @@ -13,6 +13,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -67,6 +69,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -99,6 +102,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -126,6 +130,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -158,6 +163,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -190,6 +196,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel @@ -216,6 +223,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -248,6 +256,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -280,6 +289,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml index fa49fc69f..4ceb9dff4 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml @@ -13,6 +13,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -67,6 +69,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -99,6 +102,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -126,6 +130,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -158,6 +163,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -190,6 +196,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel @@ -216,6 +223,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -248,6 +256,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -280,6 +289,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml index 1e0c43388..bb4575733 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml @@ -13,6 +13,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.Razor.RazorPage<System.Object> @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -70,6 +72,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -102,6 +105,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -134,6 +138,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -166,6 +171,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -193,6 +199,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -225,6 +232,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -257,6 +265,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -289,6 +298,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml index c43817eca..d970361f4 100644 --- a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml @@ -2,18 +2,18 @@ - - - - + + + + - - - - - - - + + + + + + + diff --git a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml index 1e439f025..dd28c8feb 100644 --- a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml @@ -1,22 +1,22 @@  - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 50c0096cd..2e094b0e6 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index 0821d268c..c57d11902 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index d65851628..28e9c81ff 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 717521f9c..003f6f605 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml index 9fec36699..117995c64 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml @@ -19,6 +19,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -53,6 +54,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml index f18d5c882..34b9e719b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenAcquirerFactory @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -107,6 +110,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml index a82d1e47a..e997633c7 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -34,6 +35,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml index 6c136a27b..616c74cc4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -35,6 +36,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml index efbb47310..45dd5741d 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -41,6 +42,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -71,6 +73,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml index 393420eec..f989b6d62 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -65,6 +67,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.IdentityModel.Validators.AadIssuerValidator diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml index d26c1c51c..826757659 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -42,6 +43,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml index fe8dbb571..2b8a1c7f5 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Attribute @@ -50,6 +51,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -81,6 +83,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -127,6 +130,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -153,6 +157,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -179,6 +184,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml index eee0c7dff..7f99c898f 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Attribute @@ -51,6 +52,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -82,6 +84,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -124,6 +127,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -151,6 +155,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -177,6 +182,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -211,6 +217,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml index 0d0b70e62..30ac6ba5d 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -38,6 +39,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml index 1c1078584..183a30f67 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -41,6 +42,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml index f72b0193c..1c809694e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml index a67bfd3fb..66ed8804c 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -86,6 +88,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -123,6 +126,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -162,6 +166,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -198,6 +203,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -236,6 +242,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -273,6 +280,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml index a9f80efcc..326a7bcdc 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -74,6 +76,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -108,6 +111,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -142,6 +146,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -174,6 +179,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.Caching.Memory.MemoryCacheOptions @@ -205,6 +211,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Func<System.Exception,System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml index 421222afb..c34ba9e1d 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml index 66004bbf3..f8acc6468 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -73,6 +75,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml index 673e7dd49..314070a17 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -80,6 +82,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -115,6 +118,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -151,6 +155,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -188,6 +193,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml index 6b56447c3..8ec8176d8 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -55,6 +56,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -86,6 +88,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -111,6 +114,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -142,6 +146,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -175,6 +180,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -205,6 +211,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml index b9e29aba4..3bceb3f21 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml index 460e8c050..c13942e86 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.CancellationToken @@ -103,6 +106,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Nullable<System.DateTimeOffset> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml index 6e77e7430..e0922c74a 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -79,6 +81,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -113,6 +116,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml index f9a7bc2e7..f6fad89bf 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -52,6 +53,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -84,6 +86,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -121,6 +124,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -155,6 +159,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -193,6 +198,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -230,6 +236,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -265,6 +272,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -300,6 +308,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -335,6 +344,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Byte[]> @@ -372,6 +382,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -407,6 +418,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -444,6 +456,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -481,6 +494,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml index cae0d9608..a579ed66a 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.Controller @@ -65,6 +66,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -97,6 +99,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -157,6 +160,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -205,6 +209,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -253,6 +258,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -310,6 +316,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml index 9c1a72996..54cedd821 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -52,6 +53,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml index 0174b027b..6dea58585 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -57,6 +58,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -88,6 +90,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.ILoginErrorAccessor @@ -120,6 +123,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -152,6 +156,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -184,6 +189,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml index f3220083d..229b8339e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -52,6 +53,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.IActionResult diff --git a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml index 6395bb34d..c0510b0c7 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IMvcBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml index b32b11bbe..18546064b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -36,6 +37,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -57,6 +59,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml index bba823ff7..1d68de42b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml index f3b0e85fa..76c51b9ed 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -118,6 +121,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml index 359c6b80c..7bdeff9c5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Owin.IAppBuilder @@ -90,6 +92,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Owin.IAppBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml index 0d81a7fbd..9db841677 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.AuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml index fb9762b72..0e2612654 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml index edc1b0c18..b6dbb4056 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.AuthenticationHandler<Microsoft.Identity.Web.AppServicesAuthenticationOptions> @@ -40,6 +41,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -74,6 +76,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticateResult> diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml index 63bdbffb8..37a811c07 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -63,6 +65,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml index 60db01b1d..76b21f6ed 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions @@ -36,6 +37,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml index 44fa66c9f..2429393c3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -41,6 +42,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -74,6 +76,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -112,6 +115,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -154,6 +158,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -192,6 +197,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -234,6 +240,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -266,6 +273,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -303,6 +311,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml index a668cf30d..0d95f84e3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Builder.IApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml index c37d386d9..d6fb7c255 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Mvc.Filters.ExceptionFilterAttribute @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -65,6 +67,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -91,6 +94,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -120,6 +124,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -146,6 +151,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -172,6 +178,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml index 74e75ffc4..97dfac08a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.ValueTuple<System.Boolean,Microsoft.AspNetCore.Mvc.IActionResult>> diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml index f294270b0..c4baf08cc 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -70,6 +72,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -104,6 +107,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml index af1d86863..9e2e4d039 100644 --- a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -24,6 +25,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -55,6 +57,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -63,6 +66,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 T @@ -110,6 +114,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -118,6 +123,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 T @@ -164,6 +170,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -172,6 +179,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 T @@ -219,6 +227,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -227,6 +236,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 T diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml index 744719bb7..a9b7d5ab7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.CredentialDescription @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -74,6 +76,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -105,6 +108,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -136,6 +140,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -171,6 +176,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -208,6 +214,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -243,6 +250,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -280,6 +288,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -317,6 +326,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -357,6 +367,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateDescription @@ -396,6 +407,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -427,6 +439,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml index f836a14e1..defbf270d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Enum @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -76,6 +78,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -106,6 +109,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -136,6 +140,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -166,6 +171,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource @@ -196,6 +202,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificateSource diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml index 039b80c1e..d1b0789da 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -73,6 +75,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -105,6 +108,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml index 41300a471..e766b9e93 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -77,6 +79,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -107,6 +110,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -137,6 +141,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -167,6 +172,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -197,6 +203,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -227,6 +234,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -257,6 +265,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -287,6 +296,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -317,6 +327,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -347,6 +358,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -377,6 +389,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -407,6 +420,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -437,6 +451,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -467,6 +482,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -497,6 +513,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -528,6 +545,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -559,6 +577,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml index 72696addd..70eedca72 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -118,6 +121,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -153,6 +157,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -188,6 +193,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -223,6 +229,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -258,6 +265,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -293,6 +301,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -328,6 +337,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -363,6 +373,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml index b0e0bae4d..996834a5e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Claims.ClaimsPrincipal @@ -87,6 +89,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml index 98628e4f4..758a86a55 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -82,6 +84,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Nullable<System.DateTimeOffset> @@ -113,6 +116,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml index a5c3a6eb7..4bd271f83 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -73,6 +75,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Nullable<System.DateTimeOffset> @@ -104,6 +107,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> @@ -139,6 +143,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.Identity.Web/Constants.xml b/dotnet/xml/Microsoft.Identity.Web/Constants.xml index b18103500..5561505c3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/Constants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/Constants.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -109,6 +112,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -140,6 +144,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -171,6 +176,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -202,6 +208,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -232,6 +239,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -263,6 +271,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -294,6 +303,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -324,6 +334,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -355,6 +366,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -385,6 +397,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml index f1065f418..b58a32b1f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -118,6 +121,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml index 7608ade0b..efbb78ae1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -71,6 +73,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions @@ -105,6 +108,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml index f01b1d36b..30bdff82b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.DefaultCredentialsLoader @@ -61,6 +62,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -114,6 +117,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<System.Security.Cryptography.X509Certificates.X509Certificate2> @@ -149,6 +153,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -187,6 +192,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -221,6 +227,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -256,6 +263,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml index 2aeeb38fb..86a461a16 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -50,6 +51,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -106,6 +109,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IDictionary<Microsoft.Identity.Abstractions.CredentialSource,Microsoft.Identity.Abstractions.ICredentialSourceLoader> @@ -141,6 +145,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task @@ -180,6 +185,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.CredentialDescription> @@ -219,6 +225,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml index b2a9334ac..a36868c74 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -51,6 +52,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -86,6 +88,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -124,6 +127,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -164,6 +168,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml index 141c90061..d6f36487b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -86,6 +88,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml index 02ec462a3..575a02eae 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -105,6 +107,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -170,6 +173,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -239,6 +243,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -313,6 +318,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -380,6 +386,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml index 1cc10e648..b81bd4d10 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -41,6 +42,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -62,6 +64,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -88,6 +91,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.DownstreamWebApiOptions @@ -115,6 +119,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Action<System.Net.Http.HttpRequestMessage> @@ -143,6 +148,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -170,6 +176,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Net.Http.HttpMethod @@ -196,6 +203,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -225,6 +233,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml index b5f510c15..d96eebe61 100644 --- a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -24,6 +25,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -56,6 +58,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -64,6 +67,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -99,6 +103,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -107,6 +112,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml index 9291bd25f..011e6f615 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -36,6 +37,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -62,6 +64,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml index 2d3b5cbbf..04bcad912 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -36,6 +37,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -63,6 +65,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -89,6 +92,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -116,6 +120,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml index 63b59105d..5b1e3e65f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -55,6 +56,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml index fcc187c8a..bc488a69a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -44,6 +45,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -83,6 +85,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -125,6 +128,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -169,6 +173,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -216,6 +221,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -303,6 +309,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml index 2c98ddcad..2cfdc8d1f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -35,6 +36,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -65,6 +67,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -91,6 +94,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml index 8dc42b96d..ddd1febfd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -35,6 +36,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Net.Http.DelegatingHandler @@ -71,6 +73,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Net.Http.DelegatingHandler diff --git a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml index 1d5052a67..9d1a88718 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -39,6 +40,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -84,6 +86,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -127,6 +130,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -175,6 +179,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.String> @@ -220,6 +225,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -265,6 +271,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -308,6 +315,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -355,6 +363,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -405,6 +414,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -437,6 +447,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -473,6 +484,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -512,6 +524,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml index 031240030..9e68576f4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml index 60a7c80f2..508db487d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -19,6 +20,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -46,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -54,6 +57,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -92,6 +96,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -100,6 +105,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -132,6 +138,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -140,6 +147,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -174,6 +182,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -182,6 +191,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -216,6 +226,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -224,6 +235,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml index be2200819..057292e86 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -24,6 +25,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -54,6 +56,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -62,6 +65,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -88,6 +92,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -96,6 +101,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -129,6 +135,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -137,6 +144,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml index 890247d43..04a7f82e1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -67,6 +69,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml index 5abee2f7a..46b0e8aa6 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -80,6 +82,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml index 98405747a..6c7d6c781 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -38,6 +39,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml index 4d49579c4..7268a2f76 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Net.Http.DelegatingHandler @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -67,6 +69,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -97,6 +100,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.ITokenAcquisition diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml index bf7447069..489e88cef 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -36,6 +37,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -59,6 +61,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -86,6 +89,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -113,6 +117,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -143,6 +148,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -170,6 +176,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -198,6 +205,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -224,6 +232,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml index 6f723d985..2b48f1ecb 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -77,6 +79,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder @@ -111,6 +114,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -151,6 +155,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml index d5b074f83..646b9f092 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -40,6 +41,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -61,6 +63,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -91,6 +94,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml index 34516ccf8..7f5f32da6 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -48,6 +49,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -87,6 +89,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.Configuration.IConfigurationSection @@ -119,6 +122,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml index 9a652f3e4..8db30953e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServerSideBlazorBuilder @@ -68,6 +70,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml index 17732d9bf..808aed4fa 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -38,6 +39,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -64,6 +66,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -90,6 +93,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -128,6 +132,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -158,6 +163,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -184,6 +190,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml index 4eef586d0..63cf0e042 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -107,6 +110,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -150,6 +154,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -179,6 +184,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.CertificatelessOptions @@ -210,6 +216,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -241,6 +248,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -272,6 +280,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -303,6 +312,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -334,6 +344,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -365,6 +376,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -396,6 +408,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -430,6 +443,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -463,6 +477,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -494,6 +509,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean @@ -531,6 +547,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -562,6 +579,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -593,6 +611,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -636,6 +655,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -665,6 +685,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -697,6 +718,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml index 42f458ed5..6edd6b500 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -69,6 +71,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml index 0948cd6d8..d0ea346f2 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml index fdf83709a..c37b9a280 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -82,6 +84,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -129,6 +132,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml index 1b8da2a27..2305eb8cd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityWebApiAuthenticationBuilder @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml index ee989f139..d618c9ecf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml index ec7e51f09..087a8fd89 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -73,6 +75,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml index a7d6e9af1..727890af9 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -84,6 +86,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -134,6 +137,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml index 79fd148d5..c967e5952 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.MicrosoftIdentityWebAppAuthenticationBuilder @@ -38,6 +39,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml index a8317a039..b279033a5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml index 1fc5ac6a4..1bac2b8cc 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Exception @@ -49,6 +50,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -84,6 +86,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Client.MsalUiRequiredException @@ -115,6 +118,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String[] @@ -146,6 +150,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml index 27fee159a..b795a1020 100644 --- a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -45,6 +46,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -118,6 +121,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml index 68c525fe0..0e2129ad7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -68,6 +70,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml index 06cab61b1..551f8cae6 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -37,6 +38,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -69,6 +71,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml index afe71a6ac..3703f6bc3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -69,6 +71,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -95,6 +98,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -121,6 +125,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml index f4fdc808b..5864f9a91 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -71,6 +73,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -97,6 +100,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -123,6 +127,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -149,6 +154,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -175,6 +181,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml index 2221278ab..6f9992eea 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -47,6 +48,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml index ea5c87240..e0e1c5c5a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml @@ -9,6 +9,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.TokenCredential @@ -33,6 +34,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -57,6 +59,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.AccessToken @@ -86,6 +89,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml index d907e6ed3..a53b8bd67 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -50,6 +51,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -78,6 +80,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.IServiceProvider @@ -119,6 +122,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.Configuration.IConfiguration @@ -151,6 +155,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.String @@ -187,6 +192,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -234,6 +240,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -293,6 +300,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -330,6 +338,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -364,6 +373,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -404,6 +414,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Void @@ -435,6 +446,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.IServiceProvider @@ -467,6 +479,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Extensions.DependencyInjection.ServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml index 679a45be0..cce7014b7 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml @@ -9,6 +9,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.TokenCredential @@ -33,6 +34,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -57,6 +59,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.AccessToken @@ -86,6 +89,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml index 18942d15b..e8559e484 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.TokenCredential @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -69,6 +71,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.AccessToken @@ -100,6 +103,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml index 309f62b11..8c5bffe2f 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -46,6 +47,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -72,6 +74,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.CancellationToken @@ -103,6 +106,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -135,6 +139,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Client.AppConfig.PoPAuthenticationConfiguration diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml index cd862168a..06c27fa94 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml @@ -11,6 +11,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.TokenCredential @@ -43,6 +44,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 @@ -69,6 +71,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Azure.Core.AccessToken @@ -100,6 +103,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml index 8a41ee864..945dbc67e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml @@ -16,6 +16,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 System.Object @@ -49,6 +50,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -104,6 +106,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -149,6 +152,7 @@ 2.12.4.0 2.13.0.0 2.13.1.0 + 2.13.2.0 Microsoft.Identity.Client.IConfidentialClientApplication diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml index 2d9442fc8..ba1bf9ccb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Enum @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -96,6 +99,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -178,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml index 638015808..3693d9f16 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml index bb85cd25d..ff6a731e0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -167,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -198,6 +204,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml index de7146332..70188d0a3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml index 1f4da2cfb..41c4abe70 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger @@ -76,6 +78,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -110,6 +113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml index 782cd804a..c64149757 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -48,6 +49,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -78,6 +80,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -105,6 +108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.NullTelemetryClient @@ -136,6 +140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -167,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -234,6 +241,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml index ff88f9c0b..a07f1ab21 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml index 61f85c282..c67157ed6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object> @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -218,6 +225,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -252,6 +260,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -286,6 +295,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -320,6 +330,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml index fc30a80ce..637d95b71 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml index 2ea6a6b8a..05b7db32a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -82,6 +84,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -120,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -152,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -188,6 +193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -223,6 +229,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -258,6 +265,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -293,6 +301,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -326,6 +335,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -362,6 +372,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -396,6 +407,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -428,6 +440,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -460,6 +473,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -493,6 +507,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -525,6 +540,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -560,6 +576,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.Claim @@ -599,6 +616,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -642,6 +660,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -685,6 +704,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -720,6 +740,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -755,6 +776,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -790,6 +812,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -820,6 +843,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -850,6 +874,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -885,6 +910,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -920,6 +946,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -956,6 +983,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -986,6 +1014,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1018,6 +1047,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1046,6 +1076,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1077,6 +1108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1117,6 +1149,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1161,6 +1194,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1205,6 +1239,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1247,6 +1282,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1275,6 +1311,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1305,6 +1342,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -1340,6 +1378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -1375,6 +1414,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1410,6 +1450,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml index 42a3f39d7..bd8a57fd9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -142,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -172,6 +177,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -208,6 +214,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -246,6 +253,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -280,6 +288,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -315,6 +324,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -351,6 +361,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -388,6 +399,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -425,6 +437,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -466,6 +479,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -504,6 +518,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -543,6 +558,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -584,6 +600,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -627,6 +644,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -668,6 +686,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -713,6 +732,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -760,6 +780,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -794,6 +815,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -816,6 +838,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -845,6 +868,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -884,6 +908,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -925,6 +950,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -967,6 +993,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1004,6 +1031,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -1028,6 +1056,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1058,6 +1087,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -1099,6 +1129,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1137,6 +1168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1168,6 +1200,7 @@ Microsoft.IdentityModel.JsonWebTokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1199,6 +1232,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -1230,6 +1264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -1261,6 +1296,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1296,6 +1332,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml index a067532c2..779208294 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -190,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -220,6 +227,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -250,6 +258,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -280,6 +289,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -309,6 +319,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml index 058128f9d..d6414e4c4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ValueType @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -162,6 +167,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -220,6 +227,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -249,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -278,6 +287,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -307,6 +317,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -336,6 +347,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -395,6 +408,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -424,6 +438,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -453,6 +468,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml index 4a93d9137..289f5eb99 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ValueType @@ -47,6 +48,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -76,6 +78,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -190,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -219,6 +226,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -248,6 +256,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -277,6 +286,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -306,6 +316,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -335,6 +346,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +376,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -393,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -422,6 +436,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -451,6 +466,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -480,6 +496,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -509,6 +526,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -538,6 +556,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -567,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -594,6 +614,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -623,6 +644,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -652,6 +674,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -681,6 +704,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -710,6 +734,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -737,6 +762,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -766,6 +792,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -795,6 +822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -824,6 +852,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -851,6 +880,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml index b8463d48e..e30ffb391 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml @@ -15,6 +15,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -146,6 +150,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -180,6 +185,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -214,6 +220,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Text.RegularExpressions.Regex @@ -243,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Text.RegularExpressions.Regex diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml index 71dc708c4..f02c4e532 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -118,6 +121,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -162,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml index feb574fe4..87e739676 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -188,6 +194,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -221,6 +228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml index e32f4dafd..e55c5a57a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml index 7d506e469..5f8ced075 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -96,6 +99,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey+AuthenticationCallback @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -152,6 +157,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml index 8847cd79f..c5a3a740d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -75,6 +77,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -140,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -177,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml index da9c98564..a77ef4c15 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -30,6 +31,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml index 09519cd09..d36a74941 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Diagnostics.Tracing.EventSource @@ -47,6 +48,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -75,6 +77,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -98,6 +101,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Logging.IdentityModelEventSource @@ -154,6 +159,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Diagnostics.Tracing.EventLevel @@ -182,6 +188,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -210,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -255,6 +263,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -309,6 +318,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -347,6 +357,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -393,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -430,6 +442,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -476,6 +489,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -513,6 +527,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -559,6 +574,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -596,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -642,6 +659,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -679,6 +697,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -725,6 +744,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -762,6 +782,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml index 26766f3e3..8c3027120 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -75,6 +77,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml index f3cdf768d..e3581de06 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -152,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -202,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -252,6 +258,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -309,6 +316,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -361,6 +369,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -420,6 +429,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -479,6 +489,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -540,6 +551,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ArgumentNullException @@ -572,6 +584,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -618,6 +631,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -666,6 +680,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -714,6 +729,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -769,6 +785,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -819,6 +836,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -876,6 +894,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -933,6 +952,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -992,6 +1012,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -1024,6 +1045,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -1058,6 +1080,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Abstractions.IIdentityLogger @@ -1086,6 +1109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1126,6 +1150,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1166,6 +1191,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1206,6 +1232,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -1236,6 +1263,7 @@ Microsoft.IdentityModel.Logging 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml index c00692cb8..d62a850e3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Guid @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -178,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -206,6 +213,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml index 086c9831c..4e46c6050 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Diagnostics.Tracing.EventListener @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -148,6 +153,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -176,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml index 280afdf92..23fb07888 100644 --- a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -76,6 +78,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -110,6 +113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml index 46d331c95..7c23e81c6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml index 1b21d679d..c11ed6c31 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -36,6 +37,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -56,6 +58,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -79,6 +82,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +108,7 @@ Microsoft.IdentityModel.Protocols 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml index 86ed3de74..47e2a09f3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml @@ -12,6 +12,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml index 39849bcec..af368d0c4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml index c9c7c9a17..5e4bed60e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml index cb8eda13c..4d6e1bc5b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml index 9673a06e7..70bec6dec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -116,6 +120,7 @@ Microsoft.IdentityModel.Protocols.OpenIdConnect 6.32.0.0 + 6.32.1.0 System.String @@ -144,6 +149,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -172,6 +178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -200,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -228,6 +236,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -256,6 +265,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -284,6 +294,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -312,6 +323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -340,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration @@ -375,6 +388,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -403,6 +417,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -431,6 +446,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -459,6 +475,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -487,6 +504,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -515,6 +533,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -543,6 +562,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -571,6 +591,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -599,6 +620,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -627,6 +649,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -655,6 +678,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -683,6 +707,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -711,6 +736,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -739,6 +765,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -766,6 +793,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -794,6 +822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -822,6 +851,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -850,6 +880,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -878,6 +909,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -906,6 +938,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -934,6 +967,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -962,6 +996,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -990,6 +1025,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1018,6 +1054,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1046,6 +1083,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1074,6 +1112,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -1102,6 +1141,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -1130,6 +1170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -1158,6 +1199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1186,6 +1228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1223,6 +1266,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1260,6 +1304,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1297,6 +1342,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1334,6 +1380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1371,6 +1418,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1408,6 +1456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1445,6 +1494,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1482,6 +1532,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1519,6 +1570,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1556,6 +1608,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1593,6 +1646,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1630,6 +1684,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1667,6 +1722,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1704,6 +1760,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1741,6 +1798,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1778,6 +1836,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1815,6 +1874,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1852,6 +1912,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1889,6 +1950,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1926,6 +1988,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1963,6 +2026,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -2000,6 +2064,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -2037,6 +2102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -2074,6 +2140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -2111,6 +2178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -2139,6 +2207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2167,6 +2236,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -2195,6 +2265,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2223,6 +2294,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2251,6 +2323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2279,6 +2352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -2307,6 +2381,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2335,6 +2410,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2363,6 +2439,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -2391,6 +2468,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml index 43fa1fe60..1e6ab36f7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -139,6 +143,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -179,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml index 870dc1343..d6d01f5f8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml index a5b84ba39..c780ed979 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -212,6 +219,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -240,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -268,6 +277,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -296,6 +306,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -324,6 +335,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -352,6 +364,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -380,6 +393,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -408,6 +422,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -436,6 +451,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -465,6 +481,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -493,6 +510,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -522,6 +540,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -551,6 +570,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -579,6 +599,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -607,6 +628,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -636,6 +658,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -664,6 +687,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -692,6 +716,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -720,6 +745,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -748,6 +774,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -776,6 +803,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -804,6 +832,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -832,6 +861,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -860,6 +890,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -888,6 +919,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -916,6 +948,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -944,6 +977,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -972,6 +1006,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1000,6 +1035,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1028,6 +1064,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1056,6 +1093,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1084,6 +1122,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1112,6 +1151,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1140,6 +1180,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -1168,6 +1209,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1196,6 +1238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1224,6 +1267,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1252,6 +1296,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1280,6 +1325,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1308,6 +1354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1336,6 +1383,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1364,6 +1412,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1392,6 +1441,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1420,6 +1470,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1448,6 +1499,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1476,6 +1528,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1504,6 +1557,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1532,6 +1586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1560,6 +1615,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml index 081fd668b..bfeea330c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -341,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -391,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -441,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -466,6 +484,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -491,6 +510,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -516,6 +536,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -541,6 +562,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -566,6 +588,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -591,6 +614,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -616,6 +640,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -641,6 +666,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -666,6 +692,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -691,6 +718,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -716,6 +744,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -741,6 +770,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -766,6 +796,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -791,6 +822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -816,6 +848,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -841,6 +874,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -866,6 +900,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -891,6 +926,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -916,6 +952,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -941,6 +978,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -966,6 +1004,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -991,6 +1030,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1016,6 +1056,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1041,6 +1082,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1066,6 +1108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml index 8e020af23..0c180bed9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml index 408f2c6c9..59e1c3766 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml index 03efd2aaf..608cbf8d3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml index b818e2b4c..88cde5695 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml index ecdc57fb6..70da67e5d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml index 23dc0adf3..a7256bb75 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml index 3450ee9be..bb62536b9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -177,6 +183,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -205,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml index 7f1a86489..a88b45eac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.HashAlgorithm @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -212,6 +219,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.IdTokenValidator @@ -240,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -269,6 +278,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -303,6 +313,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -337,6 +348,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -371,6 +383,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -405,6 +418,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -439,6 +453,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -473,6 +488,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -507,6 +523,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -541,6 +558,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -569,6 +587,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -604,6 +623,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -637,6 +657,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -670,6 +691,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -703,6 +725,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -734,6 +757,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -768,6 +792,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -801,6 +826,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -834,6 +860,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml index 77089bc94..765c4459c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Enum @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -96,6 +99,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml index 34393a20f..6db044ff4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml index 5356dd736..e49ac7f99 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +247,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml index a3707e575..4f8b092eb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -178,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -205,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml index 663e85452..8d80a7ca9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml index ab6acb272..30fec40eb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -117,6 +121,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -142,6 +147,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -167,6 +173,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -192,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -217,6 +225,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -242,6 +251,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -267,6 +277,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -292,6 +303,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -317,6 +329,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -342,6 +355,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -367,6 +381,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -392,6 +407,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -417,6 +433,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -442,6 +459,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -467,6 +485,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -492,6 +511,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -517,6 +537,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -542,6 +563,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -567,6 +589,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -592,6 +615,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -617,6 +641,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -642,6 +667,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -667,6 +693,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -692,6 +719,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -717,6 +745,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -742,6 +771,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -767,6 +797,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -792,6 +823,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -817,6 +849,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -842,6 +875,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -867,6 +901,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -892,6 +927,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -917,6 +953,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -942,6 +979,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -967,6 +1005,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -992,6 +1031,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1017,6 +1057,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1042,6 +1083,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1067,6 +1109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1092,6 +1135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1117,6 +1161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1142,6 +1187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1167,6 +1213,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml index 0966694d8..f14755be1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml index e55bd4826..ec9b9b4de 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -96,6 +99,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml index f23f36289..f0f41eeaf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml index bdeab9957..d3a353c8b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml index 450772881..fde00279c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml index 85d0dbefd..41dd78117 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml index abcee2333..5f758e8f0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml index b1bdd4477..47a3ce14b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml index 5075bc7cc..e033ac0b9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -176,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -203,6 +210,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -230,6 +238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -257,6 +266,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml index 3063a7ca1..b134b1274 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml index 0f9b52996..3055da668 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml index 5baa45041..8a6d78fed 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -178,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -206,6 +213,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -234,6 +242,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -262,6 +271,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -290,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -318,6 +329,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -345,6 +357,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml index 957f01921..26e40154c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -77,6 +79,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -114,6 +117,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -142,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -172,6 +177,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -232,6 +239,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -260,6 +268,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -288,6 +297,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestCreationParameters @@ -316,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml index c73c1f092..81fb51db2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationResult> @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.SecurityToken> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml index f05652785..8f8c749fc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml index e84a97e41..76cf05b1a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml index 9df8334d3..441189fd3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml index 7da574d1f..ae3d7fb00 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml index 9e9878a0a..6c4a6c90d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml index ad99e399c..bcfbaaaa3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml index 8b94ee8d0..2e3240dea 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml index 1220e38d2..cb01b1116 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml index bb47c152b..cd98ddb20 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml index 820752c2f..6b003e38c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml index 7dec9f5be..c80c11181 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml index 9ac76edbf..fa373678e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml index bf9489c31..f90e6002e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -105,6 +108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.HttpRequestData> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml index 803b568aa..a35007cec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -107,6 +110,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -141,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -177,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -205,6 +211,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CallContext @@ -233,6 +240,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -261,6 +269,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +298,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationParameters diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml index 3b3182449..d0576c078 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml index dde938706..d73feabc6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -119,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -177,6 +183,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.CnfDecryptionKeysResolverAsync @@ -205,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -232,6 +240,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.HttpClientProvider @@ -260,6 +269,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.NonceValidatorAsync @@ -288,6 +298,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverAsync @@ -316,6 +327,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverFromKeyIdAsync @@ -344,6 +356,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.ReplayValidatorAsync @@ -372,6 +385,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -400,6 +414,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignatureValidatorAsync @@ -428,6 +443,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -456,6 +472,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -484,6 +501,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -512,6 +530,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -540,6 +559,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -568,6 +588,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -596,6 +617,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -626,6 +648,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -654,6 +677,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -682,6 +706,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml index 72519de68..492deec28 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -119,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -147,6 +152,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -175,6 +181,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml index 48c110ef5..1d3b0caee 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -57,6 +59,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 System.String @@ -86,6 +89,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.List<Microsoft.IdentityModel.Xml.KeyInfo> @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml index 3b88b6ea4..0f1b25ed8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Signature @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml index eb7fd5598..5d933e2a6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -141,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -181,6 +186,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml index 4d04cc98f..13536d317 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 System.Object @@ -32,6 +33,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 @@ -52,6 +54,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml index ba9550654..662545c4b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml index 9ddb5fd0c..29b62ef37 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -160,6 +166,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 System.String @@ -185,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml index f5e8f62b2..e53003d52 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml index 8deb5e6aa..6dd023c2e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml index 2d55c92d1..f760a0282 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml index bead7e0c8..18e202fe9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml index d8ea33cef..db3a36749 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml index c323ac2c6..82dc756b4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -341,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -391,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -441,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -466,6 +484,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -491,6 +510,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -516,6 +536,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml index 67037695b..236e7eed4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml index 4396a78e8..31be500a0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml index 14a294b59..ba9816123 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -179,6 +185,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -244,6 +252,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -274,6 +283,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -304,6 +314,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -332,6 +343,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -360,6 +372,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -388,6 +401,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -444,6 +459,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -472,6 +488,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -500,6 +517,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -528,6 +546,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -556,6 +575,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -584,6 +604,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -612,6 +633,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -640,6 +662,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -668,6 +691,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -696,6 +720,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -724,6 +749,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -752,6 +778,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -780,6 +807,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -808,6 +836,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -836,6 +865,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -864,6 +894,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -892,6 +923,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml index e9a85f845..72f430eae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -229,6 +236,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 + 6.32.1.0 System.String @@ -263,6 +271,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.SecurityTokenServiceTypeRoleDescriptor @@ -299,6 +308,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml index 657f5a592..49979b1a9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml index 9f2346675..5400219db 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -156,6 +161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -185,6 +191,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -213,6 +220,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -242,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -274,6 +283,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -303,6 +313,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -332,6 +343,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -361,6 +373,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -395,6 +408,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml index 499d5a5fa..a2d9aec1c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -53,6 +54,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -83,6 +85,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -116,6 +119,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -147,6 +151,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -182,6 +187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -216,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -253,6 +260,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -280,6 +288,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -307,6 +316,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -339,6 +349,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<T> @@ -371,6 +382,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<T> @@ -403,6 +415,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -430,6 +443,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -460,6 +474,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml index 66a838252..e2f4da61a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml index 3f222ec19..a9bc9cf4f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml index 49c9dc061..fbbb5b5a2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<System.String> @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -220,6 +227,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -248,6 +256,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml index 78e75e135..f77efdbc9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Collections.Generic.IEnumerable<System.String>> @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -178,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -206,6 +213,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml index 1b6a8cd3c..a033657fb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<T> @@ -83,6 +85,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml index f49a32a96..ec27e41c3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<T> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml index 36574a94a..6a5619aaa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml index e97150008..945cb452d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml index d6ae35524..63fc9ccd6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -54,6 +55,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -82,6 +84,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -118,6 +121,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<T> @@ -154,6 +158,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml index 92ed9ba2f..f39a3d001 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml index 0722b18db..bd53e2ebf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -61,6 +63,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -87,6 +90,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -168,6 +174,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -198,6 +205,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -225,6 +233,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -255,6 +264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -285,6 +295,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenDescriptor @@ -312,6 +323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +351,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +379,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -393,6 +407,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -420,6 +435,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -447,6 +463,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -474,6 +491,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -501,6 +519,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -528,6 +547,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -555,6 +575,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -582,6 +603,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -609,6 +631,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -636,6 +659,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -662,6 +686,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml index 65527bd5b..f7d2b024f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml @@ -11,6 +11,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -37,6 +38,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -58,6 +60,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -84,6 +87,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -109,6 +113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -135,6 +140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -161,6 +167,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.TaskCreationOptions diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml index 3a781a85f..1d3202879 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -239,6 +247,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml index 4a8e0cca1..9e77426d5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml index 307c2d8f8..bc6b46e8b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml index 314393ba2..1ce6488d3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -187,6 +193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml index b14ff43ec..d551ca3c0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -80,6 +82,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -110,6 +113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -138,6 +142,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +171,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -223,6 +230,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -251,6 +259,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -279,6 +288,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -309,6 +319,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +350,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Signature @@ -367,6 +379,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -395,6 +408,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml index f0a8329a4..5ca2b5d86 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -75,6 +77,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -107,6 +110,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -135,6 +139,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -192,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -220,6 +227,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -248,6 +256,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml index 42d578963..68fcfa9f6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -134,6 +138,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml index e114e192f..014cf3271 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml index 112923270..d66fdefbe 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml index 824bc49e7..fcc9c188f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml index b713db01d..44273f8a0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -80,6 +82,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -108,6 +111,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -137,6 +141,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml index eb4adf107..705502117 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlQualifiedName @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml index e3296659e..249496d59 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -77,6 +79,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -115,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAction> @@ -143,6 +147,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -171,6 +176,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -199,6 +205,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -227,6 +234,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml index 8a6f48b02..dd9005246 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml index 9f64b4881..ac643c2ac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlCondition> @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml index 401ee0e20..9dfc6c257 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml index f936e7aee..d782445d1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -90,6 +93,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -115,6 +119,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -140,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -165,6 +171,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -190,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -215,6 +223,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -240,6 +249,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -265,6 +275,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -290,6 +301,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -315,6 +327,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml index e574865ba..d3bdcc06c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -264,6 +274,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -314,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -389,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -414,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -439,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -464,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -489,6 +508,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +534,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -539,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -564,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -589,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -614,6 +638,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -639,6 +664,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml index 6783d44b8..ebb7c8bd5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String[] @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -341,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -391,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -441,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml index 0c6c5ca6a..ff317795f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml index 4de47e918..9b4ccc20b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -134,6 +138,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -162,6 +167,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml index 4ac235231..bcf7579ba 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -177,6 +183,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -205,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -233,6 +241,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -261,6 +270,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml index 630962188..62b8d5ea1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml index 147fd2929..44ccb15b1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -222,6 +229,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> @@ -256,6 +264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -288,6 +297,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -324,6 +334,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -362,6 +373,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -399,6 +411,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -431,6 +444,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -468,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -501,6 +516,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> @@ -544,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -584,6 +601,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -617,6 +635,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -652,6 +671,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -685,6 +705,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -722,6 +743,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -758,6 +780,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -793,6 +816,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -828,6 +852,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -865,6 +890,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -902,6 +928,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -936,6 +963,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -970,6 +998,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1004,6 +1033,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1037,6 +1067,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1072,6 +1103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1110,6 +1142,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.Saml.SamlSubject> @@ -1138,6 +1171,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSerializer @@ -1167,6 +1201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1205,6 +1240,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -1233,6 +1269,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1270,6 +1307,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1306,6 +1344,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1344,6 +1383,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1379,6 +1419,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1414,6 +1455,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1453,6 +1495,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -1496,6 +1539,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1534,6 +1578,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1572,6 +1617,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1605,6 +1651,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1642,6 +1689,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1676,6 +1724,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml index 2a565ec88..8992d1403 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml index 1271b696a..07baf30a8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml index b28d90e55..d934addff 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAction @@ -154,6 +159,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -194,6 +200,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -227,6 +234,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -264,6 +272,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -298,6 +307,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAudienceRestrictionCondition @@ -332,6 +342,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -366,6 +377,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding @@ -398,6 +410,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -432,6 +445,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -464,6 +478,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -499,6 +514,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlDoNotCacheCondition @@ -531,6 +547,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -563,6 +580,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -600,6 +618,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -632,6 +651,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -666,6 +686,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -700,6 +721,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -735,6 +757,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -770,6 +793,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -805,6 +829,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -840,6 +865,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -874,6 +900,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -909,6 +936,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -944,6 +972,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -978,6 +1007,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1012,6 +1042,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1046,6 +1077,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1081,6 +1113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1115,6 +1148,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml index ef65f05fe..8c3bd4836 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml index bae085349..cbaabd84d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -137,6 +141,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -221,6 +228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -249,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -277,6 +286,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -305,6 +315,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -333,6 +344,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml index 9331c867c..75e9db3e9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml index 828b75eec..9b28e38ba 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml index 1192786e1..b799b7f8b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml index ee9daa73b..9d8768ea7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -105,6 +108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml index f1cda2100..a8e3bbe6f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -125,6 +129,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml index cc4eb404b..7030a44a4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -128,6 +132,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -157,6 +162,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -186,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +221,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -242,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -271,6 +280,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Signature @@ -299,6 +309,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -327,6 +338,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -355,6 +367,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -383,6 +396,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml index bb0d26a44..d78bc74b5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -133,6 +137,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -190,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -218,6 +225,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -247,6 +255,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -275,6 +284,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml index 1c70a6248..1dcae36cc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml index 96e12bd5d..48d2e7596 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml index a4b177c11..3c9e22d95 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -49,6 +50,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -132,6 +136,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.Uri> @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml index 160849622..6fc86e6c6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +195,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -220,6 +227,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml index 6eb6b4d70..3a9aac5ab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -75,6 +77,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -108,6 +111,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Action> @@ -137,6 +141,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -165,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -194,6 +200,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml index f00752bbf..6a05d1463 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction> @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -186,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -215,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml index 580b0189f..83b14eb16 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml index bb73abfdb..e7add3b89 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -264,6 +274,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -314,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -389,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -414,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -439,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -464,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -489,6 +508,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +534,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -539,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -564,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -589,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -614,6 +638,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -639,6 +664,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -664,6 +690,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml index 7e878e165..d16222c0c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -119,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -144,6 +149,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -172,6 +178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml index 9d55d34de..6ffefa0b4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -264,6 +274,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -314,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -389,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -414,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -439,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -464,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -489,6 +508,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +534,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -539,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -564,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -589,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -614,6 +638,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -639,6 +664,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -664,6 +690,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -689,6 +716,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -714,6 +742,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -739,6 +768,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -764,6 +794,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -789,6 +820,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -814,6 +846,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -839,6 +872,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml index de2913437..62ca23bb8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -182,6 +188,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -207,6 +214,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -236,6 +244,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -261,6 +270,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -291,6 +301,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +327,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -345,6 +357,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -370,6 +383,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -398,6 +412,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -423,6 +438,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -451,6 +467,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -476,6 +493,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -505,6 +523,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml index 8c13f3259..6add4c936 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -264,6 +274,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -314,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -389,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -414,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -439,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -464,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -489,6 +508,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +534,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -539,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -564,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -589,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml index 9aca6ea3d..6064f646b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String[] @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml index 364756418..489f8b38f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -188,6 +194,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -216,6 +223,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml index 5a0983289..b16461b20 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml index 4369368e9..5c5aa70bb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +195,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -218,6 +225,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -247,6 +255,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml index a747b8384..10a178848 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.Uri> @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.Int32> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml index 33e161a0b..0396fd60e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -154,6 +159,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -182,6 +188,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -210,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -238,6 +246,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml index 67ce24f3a..b1c0c6305 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml index ee148e2a8..7aab799dd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> @@ -244,6 +252,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -279,6 +288,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -313,6 +323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -347,6 +358,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -380,6 +392,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -412,6 +425,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -444,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -481,6 +496,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -531,6 +547,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -565,6 +582,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -603,6 +621,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -643,6 +662,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -676,6 +696,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -709,6 +730,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -744,6 +766,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -771,6 +794,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -808,6 +832,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -845,6 +870,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -880,6 +906,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -915,6 +942,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -951,6 +979,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -985,6 +1014,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1019,6 +1049,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1053,6 +1084,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1086,6 +1118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1121,6 +1154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1159,6 +1193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Serializer @@ -1188,6 +1223,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1228,6 +1264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -1256,6 +1293,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1293,6 +1331,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1329,6 +1368,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1364,6 +1404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1402,6 +1443,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1437,6 +1479,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1476,6 +1519,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1510,6 +1554,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1553,6 +1598,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1588,6 +1634,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1630,6 +1677,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1669,6 +1717,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1702,6 +1751,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1737,6 +1787,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1771,6 +1822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml index e79fa79a9..58edfe6d9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml index 5a76c7298..a9110d02f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml index fe37f136d..a807da205 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Action @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -197,6 +203,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -232,6 +239,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -270,6 +278,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -304,6 +313,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +349,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction @@ -373,6 +384,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -409,6 +421,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -442,6 +455,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -476,6 +490,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -511,6 +526,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -545,6 +561,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -577,6 +594,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -609,6 +627,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -642,6 +661,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -677,6 +697,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction @@ -713,6 +734,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -750,6 +772,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -786,6 +809,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation @@ -818,6 +842,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData @@ -853,6 +878,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality @@ -885,6 +911,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -918,6 +945,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -952,6 +980,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -988,6 +1017,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1022,6 +1052,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1057,6 +1088,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1092,6 +1124,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1125,6 +1158,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1159,6 +1193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1194,6 +1229,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1228,6 +1264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1263,6 +1300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1297,6 +1335,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1331,6 +1370,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1365,6 +1405,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1398,6 +1439,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1435,6 +1477,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1468,6 +1511,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1501,6 +1545,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1537,6 +1582,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml index b99f35c39..efdc1f2b9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml index e781186d5..abdc0c69e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml index ae0eaf419..e0ea38c86 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml index 12c1d6cca..242af93cd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -152,6 +157,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -181,6 +187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -210,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml index 0357161e6..3a1bfaeec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml index f4900a86d..387586a42 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml index 4e7c1adb6..60acf95b8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml index 3551c696d..adea0f37c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -114,6 +117,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -141,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -168,6 +173,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -199,6 +205,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.HashAlgorithmName @@ -235,6 +242,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -263,6 +271,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -291,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -325,6 +335,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -366,6 +377,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -405,6 +417,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml index d96bc91ed..e23d7251f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml index 8475051e4..931c5ebc5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -78,6 +80,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -134,6 +138,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -179,6 +184,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -206,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -237,6 +244,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -274,6 +282,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -315,6 +324,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -352,6 +362,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -386,6 +397,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -414,6 +426,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml index 91bea5bd1..b95f2fc85 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml index bb8ef986e..6c2de93d6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -138,6 +142,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -173,6 +178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml index 9f2771901..e6a7670e3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -57,6 +59,7 @@ Microsoft.IdentityModel.Tokens 6.32.0.0 + 6.32.1.0 System.String @@ -86,6 +89,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -169,6 +175,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml index 5e06c5f90..19f8dafbf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -119,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -146,6 +151,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -173,6 +179,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -200,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -234,6 +242,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -262,6 +271,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -290,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -318,6 +329,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -346,6 +358,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -373,6 +386,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -400,6 +414,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -428,6 +443,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -456,6 +472,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml index 245d22258..7f89a1bb2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Logging.LoggerContext @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml index 0a46d7e61..e5193d3e6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml index a1c8ff218..b76b5ade4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml index fe35e7167..0ae655b0e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -154,6 +159,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CompressionProviderFactory @@ -182,6 +188,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml index aa59037e3..f186b1c31 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -203,6 +209,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml index 419771a96..574738907 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml index adc65a5f4..c8e525108 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionProvider @@ -200,6 +206,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -244,6 +251,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -290,6 +298,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -331,6 +340,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -374,6 +384,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.HashAlgorithm @@ -412,6 +423,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.HashAlgorithm @@ -450,6 +462,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -491,6 +504,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -533,6 +547,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -575,6 +590,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -602,6 +618,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ICryptoProvider @@ -632,6 +649,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -660,6 +678,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -694,6 +713,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -722,6 +742,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -758,6 +779,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -798,6 +820,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -830,6 +853,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -863,6 +887,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -896,6 +921,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -928,6 +954,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml index 1254f800e..335ddc75d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -79,6 +81,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -111,6 +114,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -143,6 +147,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -176,6 +181,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml index 54414f8bf..70feea5c8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IO.Compression.CompressionLevel @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -230,6 +237,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml index c254c155a..5c64e39bb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.ECDsa @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -221,6 +228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml index 4f3608b85..d6943b3ec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml @@ -9,6 +9,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -33,6 +34,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml index 0a8f5c5e9..0aa625be8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -77,6 +79,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -111,6 +114,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -145,6 +149,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -173,6 +178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -229,6 +236,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -257,6 +265,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -285,6 +294,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml index 3f6412e1a..d70f07b28 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int64 @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml index e386b4f02..457292096 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml index 98650f4ca..16ef40585 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -81,6 +83,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -122,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml index b46894625..8fbfa2040 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml index de98bc4a1..3b10f7a60 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml index 0fd0df39e..a53b72f1b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -162,6 +167,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -194,6 +200,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -231,6 +238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -267,6 +275,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -308,6 +317,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml index 937f5893a..c58ad3b30 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml index cf67cdf19..8c998f179 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml index 413397e68..1ddaf6c44 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml index 0642731d1..c5928f553 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml index a78c677b0..e357caa65 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml index 6cd2e0dab..42bb51733 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml index de6bd2917..57ce57a66 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml index e40e0d412..a110ed814 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -181,6 +187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -210,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -246,6 +254,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -274,6 +283,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -302,6 +312,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -330,6 +341,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -358,6 +370,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -386,6 +399,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -415,6 +429,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -443,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -471,6 +487,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.String> @@ -499,6 +516,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -527,6 +545,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -555,6 +574,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -583,6 +603,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -611,6 +632,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.String> @@ -639,6 +661,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -667,6 +690,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -695,6 +719,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -723,6 +748,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -754,6 +780,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -785,6 +812,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -814,6 +842,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -842,6 +871,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -870,6 +900,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.String> @@ -898,6 +929,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -926,6 +958,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -954,6 +987,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -982,6 +1016,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml index eba9dc3b7..7d29e7d52 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -96,6 +99,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -128,6 +132,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -193,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -225,6 +232,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml index 3417eb2f6..0032ae134 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -117,6 +121,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml index 2b38057e0..a5102a7f2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -341,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -391,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -441,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -466,6 +484,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -491,6 +510,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -516,6 +536,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -541,6 +562,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -566,6 +588,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -591,6 +614,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -616,6 +640,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -641,6 +666,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml index 99da4231e..eef4092e9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -192,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -223,6 +230,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.JsonWebKey> @@ -251,6 +259,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml index 783f59983..540531d92 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml index b61a09937..1f8a4434c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml index 18fb9f087..3c21d436d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -126,6 +130,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -153,6 +158,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -212,6 +219,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -244,6 +252,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml index 91ef520f2..a41cd41ec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml index 4d0a8e2ac..a4eb418fc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Enum @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml index f0b2f4168..dea397aef 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -223,6 +230,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -259,6 +267,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml index 8e11b3903..97b1376ac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -223,6 +230,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.RSAParameters @@ -251,6 +259,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -280,6 +289,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.RSA diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml index 6ca1b2c78..83374bfa8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -291,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -316,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -341,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -391,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -416,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -441,6 +458,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -466,6 +484,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -491,6 +510,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -516,6 +536,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -541,6 +562,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -566,6 +588,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -591,6 +614,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -616,6 +640,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -641,6 +666,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -666,6 +692,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -691,6 +718,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -716,6 +744,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -741,6 +770,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -766,6 +796,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -791,6 +822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -816,6 +848,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -841,6 +874,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -866,6 +900,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -891,6 +926,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -916,6 +952,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -941,6 +978,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -966,6 +1004,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -991,6 +1030,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1016,6 +1056,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1041,6 +1082,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1066,6 +1108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1091,6 +1134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1116,6 +1160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1141,6 +1186,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1166,6 +1212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1191,6 +1238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1216,6 +1264,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1241,6 +1290,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1266,6 +1316,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1291,6 +1342,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1316,6 +1368,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1341,6 +1394,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1366,6 +1420,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1391,6 +1446,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1416,6 +1472,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1441,6 +1498,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1466,6 +1524,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1491,6 +1550,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml index e78484dc1..f2d64fe6d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -124,6 +128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -152,6 +157,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -212,6 +219,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -240,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml index 24e96df5a..e632d6b4b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml index e9ff793de..f44c82b02 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -178,6 +184,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -206,6 +213,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -234,6 +242,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml index a1c6f1fd4..aa239cf65 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ArgumentException @@ -36,6 +37,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -56,6 +58,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -79,6 +82,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +108,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml index 4f532d313..b67d997b0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml index e1243733e..1ff8650a4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml index 9656c5bf6..f9b6123df 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml index bc1712bed..0275b4bbe 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -186,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +221,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -242,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -270,6 +279,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -298,6 +308,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -326,6 +337,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -354,6 +366,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -382,6 +395,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -413,6 +427,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml index 72700b957..8d4d2aefa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml index 978eff536..f7a8df7d6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenDecryptionFailedException @@ -47,6 +48,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml index 222c4984e..a226a141e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -160,6 +165,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml index 8bac03618..b34f735f9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -156,6 +161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml index 106f12d03..438626547 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -139,6 +143,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -169,6 +174,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -198,6 +204,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKeyIdentifierClause @@ -234,6 +241,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -268,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -301,6 +310,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -336,6 +346,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -367,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -402,6 +414,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -437,6 +450,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -469,6 +483,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml index 98d0a9437..ac98fdf35 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -191,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml index 899bef129..c4489d9fd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -191,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml index 4b8c8496c..0d2b39462 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -191,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml index 8ab9640c5..b7d5a8b45 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> @@ -187,6 +193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -219,6 +226,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml index 2fcf2ce5f..cd835c585 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml index 85676c699..dcb5b5969 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -156,6 +161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml index 6b8f7b00f..a62e2e342 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -159,6 +164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -191,6 +197,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml index d3906fb10..e4e409ca9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml index 92b3b94ae..aadd32d36 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenArgumentException @@ -36,6 +37,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -56,6 +58,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -79,6 +82,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +108,7 @@ Microsoft.IdentityModel.Tokens 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml index 4c92d1294..569728721 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml index bc1370778..5846b9e27 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -47,6 +48,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -128,6 +132,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -157,6 +162,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -189,6 +195,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml index 7fc35536c..fbf018ed0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml index b912d3cca..d9c8719ec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml index 288ceed46..b859d057e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml index ad748c534..6c5602fd0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -58,6 +59,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -83,6 +85,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -111,6 +114,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -141,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -171,6 +176,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -201,6 +207,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -233,6 +240,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml index a4dd5f850..b2552c8f6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml index c6ab6e844..fb31f2b2d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -77,6 +79,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -105,6 +108,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -133,6 +137,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -163,6 +168,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -190,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -221,6 +228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -249,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -281,6 +290,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -318,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -364,6 +375,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml index b81cdf469..906b3f7bd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml index 31fc197c0..0602b475a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml index 6a82b4140..302d2a77d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -136,6 +140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -170,6 +175,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -199,6 +205,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -227,6 +234,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -255,6 +263,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -283,6 +292,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml index d234c378a..5b0390fae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.SymmetricAlgorithm @@ -195,6 +201,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -229,6 +236,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -257,6 +265,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -293,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml index f9aad1b83..237fe01b5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -128,6 +132,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -156,6 +161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml index 611d8f959..c31d40355 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -74,6 +76,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -109,6 +112,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -136,6 +140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -167,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -204,6 +210,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -242,6 +249,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -271,6 +279,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -304,6 +313,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -342,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -381,6 +392,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -422,6 +434,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml index 3e83ebb15..13be5b1ce 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CallContext @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml index 273ad8522..8c8c8daaf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml index ea1948c85..4baf85ca0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -120,6 +124,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -189,6 +195,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -215,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -251,6 +259,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml index b4376d9ff..5a2631cdb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml index 076dccbca..fcea41d1d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml index 349060bd8..73ca71118 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AlgorithmValidator @@ -152,6 +157,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AudienceValidator @@ -184,6 +190,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -213,6 +220,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -249,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -278,6 +287,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.BaseConfigurationManager @@ -307,6 +317,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -343,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -371,6 +383,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -399,6 +412,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -428,6 +442,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.TimeSpan @@ -455,6 +470,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -483,6 +499,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -518,6 +535,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -546,6 +564,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -575,6 +594,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -603,6 +623,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -631,6 +652,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolver @@ -663,6 +685,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolverUsingConfiguration @@ -698,6 +721,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -726,6 +750,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidator @@ -760,6 +785,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidatorUsingConfiguration @@ -796,6 +822,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerValidator @@ -830,6 +857,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.IssuerValidatorUsingConfiguration @@ -865,6 +893,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.LifetimeValidator @@ -897,6 +926,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -932,6 +962,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -968,6 +999,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -999,6 +1031,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -1029,6 +1062,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -1057,6 +1091,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1093,6 +1128,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1128,6 +1164,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1163,6 +1200,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1198,6 +1236,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1230,6 +1269,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -1260,6 +1300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1296,6 +1337,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureValidator @@ -1326,6 +1368,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SignatureValidatorUsingConfiguration @@ -1357,6 +1400,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1385,6 +1429,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenDecryptionKeyResolver @@ -1415,6 +1460,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -1443,6 +1489,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenReader @@ -1473,6 +1520,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ITokenReplayCache @@ -1501,6 +1549,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TokenReplayValidator @@ -1533,6 +1582,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TransformBeforeSignatureValidation @@ -1561,6 +1611,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1596,6 +1647,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.TypeValidator @@ -1630,6 +1682,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -1661,6 +1714,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1696,6 +1750,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1735,6 +1790,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1778,6 +1834,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1817,6 +1874,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1855,6 +1913,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1891,6 +1950,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1929,6 +1989,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -1965,6 +2026,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1994,6 +2056,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -2023,6 +2086,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -2052,6 +2116,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -2081,6 +2146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml index 42efa75be..ad4ed3646 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -177,6 +183,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -205,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -233,6 +241,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -261,6 +270,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.CallContext @@ -289,6 +299,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -317,6 +328,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml index 7ed7a85dc..2049b5659 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml index c22f1526e..e726dde38 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml index 7fdd9ba4b..f100e0a10 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Uri @@ -134,6 +138,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +169,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml index 0e2751480..7863b8762 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -82,6 +84,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -114,6 +117,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +145,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -173,6 +178,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -206,6 +212,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml index aed53e52f..ec9772e25 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Enum @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml index f67a5088b..b2259f16c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -79,6 +81,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -117,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -156,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -193,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -236,6 +242,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -276,6 +283,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -316,6 +324,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml index 655d32163..678a5a068 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -106,6 +109,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml index ef758135a..89faa1637 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -157,6 +162,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -186,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -219,6 +226,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -249,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -284,6 +293,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -312,6 +322,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -340,6 +351,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -369,6 +381,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -397,6 +410,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml index da633ab64..23668258b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -72,6 +74,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -103,6 +106,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml index 840912ca9..ac937640c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -80,6 +82,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -121,6 +124,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml index 8176cbb83..e25b5439d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml @@ -7,6 +7,7 @@ Microsoft.IdentityModel.Validators 6.32.0.0 + 6.32.1.0 System.Object @@ -29,6 +30,7 @@ Microsoft.IdentityModel.Validators 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml index 79b6f6329..583c5a7c8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -119,6 +123,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -147,6 +152,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml index 895d907e0..1d68e02b8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml index 64891de30..f57763673 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -155,6 +160,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +195,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -224,6 +231,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Reference @@ -260,6 +268,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Signature @@ -296,6 +305,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -330,6 +340,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -366,6 +377,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -401,6 +413,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -429,6 +442,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -464,6 +478,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -499,6 +514,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -534,6 +550,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml index e7b9116c7..678a9dd9f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryReader @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -125,6 +129,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -153,6 +158,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -181,6 +187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -209,6 +216,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -237,6 +245,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -269,6 +278,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -302,6 +312,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -340,6 +351,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -369,6 +381,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -397,6 +410,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryReader @@ -425,6 +439,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -454,6 +469,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -482,6 +498,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +531,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -547,6 +565,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -585,6 +604,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -616,6 +636,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -644,6 +665,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -672,6 +694,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -705,6 +728,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -736,6 +760,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -768,6 +793,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -802,6 +828,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -831,6 +858,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -860,6 +888,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -889,6 +918,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -917,6 +947,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -945,6 +976,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlNameTable @@ -973,6 +1005,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlNodeType @@ -1001,6 +1034,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1029,6 +1063,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1058,6 +1093,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -1089,6 +1125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -1125,6 +1162,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -1161,6 +1199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.ReadState @@ -1189,6 +1228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -1229,6 +1269,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1257,6 +1298,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryReader @@ -1285,6 +1327,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1313,6 +1356,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -1341,6 +1385,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1369,6 +1414,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlSpace diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml index de074350f..5306cca68 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryWriter @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryWriter @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -154,6 +159,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryWriter @@ -183,6 +189,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlDictionaryWriter @@ -211,6 +218,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -246,6 +254,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -277,6 +286,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -308,6 +318,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -343,6 +354,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -374,6 +386,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -414,6 +427,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -442,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -470,6 +485,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -498,6 +514,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -529,6 +546,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -557,6 +575,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -590,6 +609,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -621,6 +641,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -656,6 +677,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -691,6 +713,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -719,6 +742,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -751,6 +775,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -787,6 +812,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.WriteState @@ -815,6 +841,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -846,6 +873,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -879,6 +907,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -910,6 +939,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -943,6 +973,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml index a3056f75c..6e7f6b06a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -161,6 +166,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -190,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Signature diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml index cb36990d0..6677ea741 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Transform @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml index 0ed794031..ad7303a00 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryWriter @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -80,6 +82,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -117,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -151,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -180,6 +185,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -211,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -242,6 +249,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -273,6 +281,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -305,6 +314,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml index 96a662102..0c47d6cfc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml index 259ef1beb..9b0daec6e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.Object> @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml index 00ccad7b2..6ead293ac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml index 0d3e9f00d..3560e38e6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigElement @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -93,6 +96,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -121,6 +125,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -152,6 +157,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -180,6 +186,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -208,6 +215,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -236,6 +244,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.RSAKeyValue @@ -264,6 +273,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.X509Data> diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml index c8ed5fe4d..6451aadff 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml index 3a3bc166b..1ddd42760 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigElement @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Byte[] @@ -157,6 +162,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -186,6 +192,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -215,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlTokenStream @@ -244,6 +252,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Transform> @@ -272,6 +281,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -300,6 +310,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -328,6 +339,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml index e72bd5d9b..f618ea804 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigElement @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -180,6 +186,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -213,6 +220,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml index 7d606f5e3..940c0fe19 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DSigElement @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -127,6 +131,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Reference> @@ -187,6 +193,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +223,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml index 5a906f358..399b9da41 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -63,6 +65,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml index fe0e1243b..34d9798af 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -38,6 +39,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -61,6 +63,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -88,6 +91,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.Transform @@ -156,6 +161,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -188,6 +194,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml index 226951c92..8a8a97eac 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml index d8d936372..805c09ee3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml index d92de6b07..7fcce536b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml index a74d6e1d9..5b808cf1d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml index c01ebbd09..c2e99587b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -116,6 +120,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -141,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -166,6 +172,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -191,6 +198,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -216,6 +224,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -241,6 +250,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -266,6 +276,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml index bc068e496..59e3f2237 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -91,6 +94,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml index a2b81ebae..64c52fd8b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml index 50736a11f..008853c02 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml index 8897b4305..4b19c880a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml index ac95dea36..85ea17b5a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml index 24109b1f6..27b6b0211 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml index 693a0ccab..78328eeb3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml index d9870bbd0..b3e2e9a34 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml index 7d2c1d0de..b8da66b3d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml index a423b9e72..38d39b218 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -66,6 +68,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml index 916819adb..8666ccbfc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -94,6 +97,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -123,6 +127,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ICollection<System.String> @@ -151,6 +156,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -179,6 +185,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -210,6 +217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Int32 @@ -238,6 +246,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.IssuerSerial @@ -266,6 +275,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -294,6 +304,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml index 4e7e2c626..7f88ec33c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml index 819c4d6f7..b798365cc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml index 516439d58..ba3f270b9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml index 920fb75d2..1a68f35bb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -39,6 +40,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -89,6 +92,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -114,6 +118,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -139,6 +144,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -164,6 +170,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -189,6 +196,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -214,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -239,6 +248,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -264,6 +274,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -289,6 +300,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -314,6 +326,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -364,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -389,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -414,6 +430,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -439,6 +456,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -464,6 +482,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -489,6 +508,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -514,6 +534,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -539,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -564,6 +586,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -589,6 +612,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -614,6 +638,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -639,6 +664,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -664,6 +690,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -689,6 +716,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -714,6 +742,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml index 8c955dd73..09b500554 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -42,6 +43,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -67,6 +69,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -92,6 +95,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -117,6 +121,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -142,6 +147,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -167,6 +173,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -192,6 +199,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -217,6 +225,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -242,6 +251,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -267,6 +277,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -292,6 +303,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -317,6 +329,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml index 0854b45e2..530978539 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -64,6 +66,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -98,6 +101,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -136,6 +140,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -174,6 +179,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -208,6 +214,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml index 3eac2da47..6483acf6f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -100,6 +103,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml index 1f5dfd55c..2940817d1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -76,6 +78,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -113,6 +116,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -149,6 +153,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlQualifiedName @@ -183,6 +188,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -216,6 +222,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -253,6 +260,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -294,6 +302,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -337,6 +346,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -378,6 +388,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -421,6 +432,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -462,6 +474,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Exception @@ -505,6 +518,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -537,6 +551,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Xml.XmlQualifiedName @@ -572,6 +587,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -609,6 +625,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml index 3db272419..903b3ec2e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml index 6256d6928..6578bcbfd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Xml.XmlException @@ -46,6 +47,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -71,6 +73,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -99,6 +102,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -129,6 +133,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 diff --git a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json index a1e709b33..9a007ae37 100644 --- a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json @@ -1 +1 @@ -{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.1","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json index d1bbe392f..f9db068f4 100644 --- a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json @@ -1 +1 @@ -{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.32.0","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml index e70cd69d6..124fe7a42 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml index 665f2e539..141cf694a 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml index 0c2d586bb..e2705b402 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 T @@ -81,6 +83,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -113,6 +116,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -145,6 +149,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.Deserializer @@ -174,6 +179,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.Serializer @@ -203,6 +209,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml index 62c45aaa8..b5d3db659 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Object @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -176,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -203,6 +210,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml index 35d917cf0..fe350540d 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -45,6 +46,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -101,6 +104,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -131,6 +135,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -164,6 +169,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -196,6 +202,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -231,6 +238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -265,6 +273,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -302,6 +311,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -338,6 +348,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -366,6 +377,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -398,6 +410,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -427,6 +440,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -455,6 +469,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -487,6 +502,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -515,6 +531,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -543,6 +560,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -571,6 +589,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -599,6 +618,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -628,6 +648,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -656,6 +677,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -684,6 +706,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -712,6 +735,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -740,6 +764,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml index 504f54ba3..368ddfe2b 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ValueType @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -68,6 +70,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -150,6 +155,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -177,6 +183,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -204,6 +211,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -231,6 +239,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -258,6 +267,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -285,6 +295,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -312,6 +323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -340,6 +352,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -367,6 +380,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -394,6 +408,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -421,6 +436,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml index 85f90d122..4480ae655 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -44,6 +45,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -69,6 +71,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -97,6 +100,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -133,6 +137,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -172,6 +177,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -214,6 +220,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -242,6 +249,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -270,6 +278,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -301,6 +310,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -336,6 +346,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.String> @@ -364,6 +375,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IList<System.String> @@ -392,6 +404,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.Int32> @@ -420,6 +433,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -448,6 +462,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -480,6 +495,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -509,6 +525,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -537,6 +554,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -566,6 +584,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -598,6 +617,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.Int32> @@ -626,6 +646,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.Int32> @@ -654,6 +675,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -682,6 +704,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -710,6 +733,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -738,6 +762,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Nullable<System.Int32> @@ -766,6 +791,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -794,6 +820,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -823,6 +850,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -851,6 +879,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -879,6 +908,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml index 9ede097ff..74ed947c0 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.ValueType @@ -43,6 +44,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -70,6 +72,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -95,6 +98,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -122,6 +126,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -149,6 +154,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -176,6 +182,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -203,6 +210,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -230,6 +238,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -257,6 +266,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -284,6 +294,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -311,6 +322,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -338,6 +350,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -365,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -392,6 +406,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -419,6 +434,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -446,6 +462,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -473,6 +490,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -500,6 +518,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -527,6 +546,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -552,6 +572,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -579,6 +600,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -606,6 +628,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -631,6 +654,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -658,6 +682,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -685,6 +710,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -712,6 +738,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -737,6 +764,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml index f431fa658..e9a3ea8ae 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -41,6 +42,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -73,6 +75,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -104,6 +107,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -142,6 +146,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -181,6 +186,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -222,6 +228,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -250,6 +257,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.String> @@ -278,6 +286,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -311,6 +320,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -339,6 +349,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -367,6 +378,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -395,6 +407,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -423,6 +436,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -451,6 +465,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -479,6 +494,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -507,6 +523,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -535,6 +552,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -566,6 +584,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -595,6 +614,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -624,6 +644,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -653,6 +674,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -682,6 +704,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -711,6 +734,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -740,6 +764,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -769,6 +794,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -798,6 +824,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -826,6 +853,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -854,6 +882,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -882,6 +911,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -911,6 +941,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -939,6 +970,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -962,6 +994,7 @@ System.IdentityModel.Tokens.Jwt 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -990,6 +1023,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime @@ -1018,6 +1052,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml index a19f1fdb9..35f241e89 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -40,6 +41,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 @@ -65,6 +67,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -102,6 +105,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -130,6 +134,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -158,6 +163,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -194,6 +200,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsIdentity @@ -230,6 +237,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -263,6 +271,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -308,6 +317,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -356,6 +366,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -406,6 +417,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -439,6 +451,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -485,6 +498,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -533,6 +547,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -583,6 +598,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -616,6 +632,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -654,6 +671,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ISet<System.String> @@ -681,6 +699,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -708,6 +727,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -735,6 +755,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -762,6 +783,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -789,6 +811,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.ISet<System.String> @@ -818,6 +841,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -847,6 +871,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -876,6 +901,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Boolean @@ -904,6 +930,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -932,6 +959,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -963,6 +991,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -1006,6 +1035,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1047,6 +1077,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1082,6 +1113,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1118,6 +1150,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1154,6 +1187,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1183,6 +1217,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Type @@ -1212,6 +1247,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1248,6 +1284,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1286,6 +1323,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1321,6 +1359,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1360,6 +1399,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -1409,6 +1449,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1475,6 +1516,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1508,6 +1550,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Security.Claims.ClaimsPrincipal @@ -1542,6 +1585,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void @@ -1578,6 +1622,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.String @@ -1621,6 +1666,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Void diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml index d8f1af639..8e2333ac3 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml @@ -13,6 +13,7 @@ 6.30.1.0 6.31.0.0 6.32.0.0 + 6.32.1.0 System.Delegate From 4c54c095f73584842618be0b4266cd618a06a398 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 7 Aug 2023 16:11:23 +0000 Subject: [PATCH 21/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=378387&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 2e094b0e6..286030481 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c57d11902..0821d268c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 28e9c81ff..d65851628 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 003f6f605..717521f9c 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From bb6d473d3492da8bf67d77b37aae9d5a7cf70ad4 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 14 Aug 2023 16:12:04 +0000 Subject: [PATCH 22/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=379663&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 286030481..25c4637f1 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index 0821d268c..c57d11902 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index d65851628..28e9c81ff 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 717521f9c..003f6f605 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From 6e5949faf45b27d852bfd9a2c208e86169753233 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Tue, 15 Aug 2023 10:13:11 +0100 Subject: [PATCH 23/63] Update high-availability.md --- .../advanced/high-availability.md | 36 +++++++------------ 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/msal-dotnet-articles/advanced/high-availability.md b/msal-dotnet-articles/advanced/high-availability.md index d71b10da6..070973333 100644 --- a/msal-dotnet-articles/advanced/high-availability.md +++ b/msal-dotnet-articles/advanced/high-availability.md @@ -6,6 +6,10 @@ title: High availability considerations in MSAL.NET For client credential (app 2 app) flow, please see https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-credential-flows which has a topic on High-Availablity first. +## Use a higher level API + +MSAL is a lower level API. If you are writing a new app, consider using the higher level [Microsoft.Identitity.Web](https://github.com/AzureAD/microsoft-identity-web) which provides out of the box integration with ASP.NET Core and ASP.NET Classic. + ## Use the latest MSAL Semantic versioning is followed to the letter. Use the latest MSAL to get the latest bug fixes. @@ -54,7 +58,7 @@ Details about logging can be found in the [Logging in MSAL.NET](/azure/active-di ## One Confidential Client per session -In web app and web API scenarios, it is recommended to use a new `ConfidentialClientApplication` on each session and to serialize in the same way - one token cache per session. This scales well and also increases security. The [official samples](/azure/active-directory/develop/sample-v2-code) show how to do this. +It is recommended to use a new `ConfidentialClientApplication` on each session and to serialize in the same way - one token cache per session. This scales well and also increases security. The [official samples](/azure/active-directory/develop/sample-v2-code) show how to do this. But remember to configure token caching. >[!NOTE] >Microsoft.Identity.Web does this. @@ -95,7 +99,11 @@ Whenever you make **requests for the same token**, i.e. whenever MSAL is able to Certs for the confidential client app must be rotated for security reasons (don't use secrets in prod!). There are several ways to handle cert rotation, listing is in ordered of most preferred to least preferred. -1. Use Microsoft.Identity.Web's certificate handling logic +1. Use Managed Identity + +With [Managed Identity](https://learn.microsoft.com/entra/msal/dotnet/advanced/managed-identity), trust is established through hosting your app in Azure. There are not secrets to maintain and no certificates to rotate. + +2. Use Microsoft.Identity.Web's certificate handling logic In web app / web api scenarios, you should use Microsoft.Identity.Web, a higher-level API over MSAL. It handles certificate rotation for when the certificate is stored in KeyVault and handles Managed Identity for you as well. @@ -103,27 +111,9 @@ Learn more in the [Certificates in Microsoft.Identity.Web](https://github.com/Az This is the preferred solution for non-Microsoft internal services using ASP.NET Core. -2. (**Internal only**) Rely on [Subject Name/Issuer certificates](./subject-name-and-issuer-authentication.md). - -This mechanism allows Azure AD to identify a cert based on SN/I instead of x5t. It is a stop-gap solution, there are no plans to make it available to third-parties. - -This is the preferred solution for Microsoft internal services. - -3. Write your own simple cert reload logic - -Azure AD will reject an expired certificate with an error, which MSAL will report as an `MsalServiceException` - -```csharp - private bool IsInvalidClientCertificateError(MsalServiceException exMsal) - { - return !_retryClientCertificate && - string.Equals(exMsal.ErrorCode, "invalid_client", StringComparison.OrdinalIgnoreCase) && - exMsal.Message.Contains("AADSTS700027", StringComparison.OrdinalIgnoreCase); - } -``` +3. (**Internal only**) Rely on [Subject Name/Issuer certificates](./subject-name-and-issuer-authentication.md). -At this stage your app should try to reload the KeyVault certificate. +This mechanism allows Azure AD to identify a cert based on SN/I instead of thumbprint (x5t). It is a stop-gap solution, there are no plans to make it available to third-parties. -4. Re-create the CCA object +This is the preferred solution for Microsoft internal services who are not able to use Managed Identity. -Create a new ConfidentialClientApplication object on each request. But make sure to point it to the same token cache! /azure/active-directory/develop/msal-net-token-cache-serialization?tabs=aspnetcore From 16b1567fed45a04313653c2ce31d4335b33c39ca Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Tue, 15 Aug 2023 11:49:05 +0100 Subject: [PATCH 24/63] Update proof-of-possession-tokens.md --- .../advanced/proof-of-possession-tokens.md | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index cd444708c..c324534d6 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -14,6 +14,12 @@ Proof-of-Possession (PoP) tokens mitigate this threat via 2 mechanisms: For more details, see [RFC 7800](https://tools.ietf.org/html/rfc7800). +## Does the protected resource accept PoP tokens? + +If you make an unauthenticated request to a protected API, it should repond with HTTP 401 (Unauthenticated) reponse, and with some [WWW-Authenticate](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/WWW-Authenticate) headers. These headers inform the clients of the available authentication schemes, such as Basic, NTLM, Bearer and POP. The MSAL family of libraries can help with Bearer and PoP. + +Programatically, MSAL.NET offers [a helper API](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) for parsing these headers. + ## Proof-of-Possession for confidential clients See the [full code sample](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/tree/master/4-Call-OwnApi-Pop) show casing a daemon app using AcquireTokenForClient with PoP to call an API protected with Proof-of-Possession. @@ -78,9 +84,13 @@ If you want to do key management and to create the SHR yourself, see [this exam ## Proof-of-Possession for public clients -Proof-of-Possession on public client flows can be achieved with the use of the updated [Windows broker](../acquiring-tokens/desktop-mobile/wam.md) in MSAL 4.52.0 and above. Contrary to the confidential client flow, it is not possible to provide your own key to sign the PoP token. +Proof-of-Possession on public client flows can be achieved with the use of the updated [Windows broker](../acquiring-tokens/desktop-mobile/wam.md) in MSAL 4.52.0 and above. Contrary to the confidential client flow, it is not possible to provide your own key to sign the PoP token. MSAL will use the best available keys which exist on the machine, typically hardware keys (see [TPM](https://learn.microsoft.com/windows/security/hardware-security/tpm/tpm-fundamentals). -Example implementation: +It is possible that a client does not support creating PoP tokens. This is due to the fact that brokers (WAM, Company Portal) are not always present on the device or that the SDK does not implement the protocol on a specific operating system. Currently, PoP tokens are available on Windows 10+ and Windows Server 2019+. Use the API `publicClientApp.IsProofOfPossessionSupportedByClient()` to understand if POP is supported by the client. + +### + +Example simple implementation: ```csharp // Required for the use of the broker (on all supported platforms except .NET 6 Windows and above) @@ -122,3 +132,12 @@ var result = await pca.AcquireTokenSilent(new[] { "scope" }, accounts.FirstOrDef .ConfigureAwait(false); ``` + +An end to end implementation would need to: + +1. [Enable the use of broker](https://learn.microsoft.com/entra/msal/dotnet/acquiring-tokens/desktop-mobile/wam) +1. Check if the client is capable of creating PoP tokens using `publicClientApp.IsProofOfPossessionSupportedByClient()` +2. Make an unauthenticated call to the service +3. Parse the WWW-Authenticate headers and if PoP is supported, extract the nonce +4. Request PoP tokens using the `AcquireTokenSilent` / `AcquireTokenInteractive` pattern, by adding the `.WithProofOfPossession(nonce, method, requestUri)` modifier +5. Make the request to the protected resource. If the request results in 200 OK, parse the `Authenticate-Info` header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. From ea13bd2d347cc3785c1d5bb94b4fd2bb88b7160e Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Tue, 15 Aug 2023 11:51:49 +0100 Subject: [PATCH 25/63] Update proof-of-possession-tokens.md --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index c324534d6..7d11c24b4 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -138,6 +138,6 @@ An end to end implementation would need to: 1. [Enable the use of broker](https://learn.microsoft.com/entra/msal/dotnet/acquiring-tokens/desktop-mobile/wam) 1. Check if the client is capable of creating PoP tokens using `publicClientApp.IsProofOfPossessionSupportedByClient()` 2. Make an unauthenticated call to the service -3. Parse the WWW-Authenticate headers and if PoP is supported, extract the nonce +3. [Parse the WWW-Authenticate headers](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) and if PoP is supported, extract the nonce 4. Request PoP tokens using the `AcquireTokenSilent` / `AcquireTokenInteractive` pattern, by adding the `.WithProofOfPossession(nonce, method, requestUri)` modifier -5. Make the request to the protected resource. If the request results in 200 OK, parse the `Authenticate-Info` header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. +5. Make the request to the protected resource. If the request results in 200 OK, [parse the Authenticate-Info](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. From 2b55af19d0e1f2e25019dbb7a46b687b6dd246c6 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 16 Aug 2023 16:18:17 +0100 Subject: [PATCH 26/63] Apply suggestions from code review Co-authored-by: Jean-Marc Prieur --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index 7d11c24b4..4c1a63c20 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -140,4 +140,4 @@ An end to end implementation would need to: 2. Make an unauthenticated call to the service 3. [Parse the WWW-Authenticate headers](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) and if PoP is supported, extract the nonce 4. Request PoP tokens using the `AcquireTokenSilent` / `AcquireTokenInteractive` pattern, by adding the `.WithProofOfPossession(nonce, method, requestUri)` modifier -5. Make the request to the protected resource. If the request results in 200 OK, [parse the Authenticate-Info](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. +5. Make the request to the protected resource. If the request results in 200 OK, [parse the Authenticate-Info](extract-authentication-parameters.md) header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. From aae9caa61dfe3f9572ad95fa2906d0a34f53fb78 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 16 Aug 2023 16:18:23 +0100 Subject: [PATCH 27/63] Update msal-dotnet-articles/advanced/proof-of-possession-tokens.md Co-authored-by: Jean-Marc Prieur --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index 4c1a63c20..477ff0b74 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -138,6 +138,6 @@ An end to end implementation would need to: 1. [Enable the use of broker](https://learn.microsoft.com/entra/msal/dotnet/acquiring-tokens/desktop-mobile/wam) 1. Check if the client is capable of creating PoP tokens using `publicClientApp.IsProofOfPossessionSupportedByClient()` 2. Make an unauthenticated call to the service -3. [Parse the WWW-Authenticate headers](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) and if PoP is supported, extract the nonce +3. [Parse the WWW-Authenticate headers](extract-authentication-parameters.md) and if PoP is supported, extract the nonce 4. Request PoP tokens using the `AcquireTokenSilent` / `AcquireTokenInteractive` pattern, by adding the `.WithProofOfPossession(nonce, method, requestUri)` modifier 5. Make the request to the protected resource. If the request results in 200 OK, [parse the Authenticate-Info](extract-authentication-parameters.md) header and extract the new `nonce` - it needs to be used at step 4 when requesting a new token. If the request results in a 401 Unauthenticated, observe the error - it may be because of an expired nonce. In that case, repeat steps 3-5. From 7a158da79ff072f7cc4d4e581ec6d3325feef511 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 16 Aug 2023 16:18:28 +0100 Subject: [PATCH 28/63] Update msal-dotnet-articles/advanced/proof-of-possession-tokens.md Co-authored-by: Jean-Marc Prieur --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index 477ff0b74..24c4d3fbf 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -135,7 +135,7 @@ var result = await pca.AcquireTokenSilent(new[] { "scope" }, accounts.FirstOrDef An end to end implementation would need to: -1. [Enable the use of broker](https://learn.microsoft.com/entra/msal/dotnet/acquiring-tokens/desktop-mobile/wam) +1. [Enable the use of broker](../acquiring-tokens/desktop-mobile/wam.md) 1. Check if the client is capable of creating PoP tokens using `publicClientApp.IsProofOfPossessionSupportedByClient()` 2. Make an unauthenticated call to the service 3. [Parse the WWW-Authenticate headers](extract-authentication-parameters.md) and if PoP is supported, extract the nonce From ca40726d6bc7fa31e19cafd07e2b01985bdad84f Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 16 Aug 2023 16:18:34 +0100 Subject: [PATCH 29/63] Update msal-dotnet-articles/advanced/proof-of-possession-tokens.md Co-authored-by: Jean-Marc Prieur --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index 24c4d3fbf..725483432 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -18,7 +18,7 @@ For more details, see [RFC 7800](https://tools.ietf.org/html/rfc7800). If you make an unauthenticated request to a protected API, it should repond with HTTP 401 (Unauthenticated) reponse, and with some [WWW-Authenticate](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/WWW-Authenticate) headers. These headers inform the clients of the available authentication schemes, such as Basic, NTLM, Bearer and POP. The MSAL family of libraries can help with Bearer and PoP. -Programatically, MSAL.NET offers [a helper API](https://learn.microsoft.com/entra/msal/dotnet/advanced/extract-authentication-parameters) for parsing these headers. +Programatically, MSAL.NET offers [a helper API](extract-authentication-parameters.md) for parsing these headers. ## Proof-of-Possession for confidential clients From 1070716c159209ffc7f9815d9ac0f6c8f9040bc1 Mon Sep 17 00:00:00 2001 From: pmaytak <34331512+pmaytak@users.noreply.github.com> Date: Wed, 16 Aug 2023 12:47:13 -0700 Subject: [PATCH 30/63] Add action to auto-assign reviewers. --- .github/auto_assign.yml | 18 ++++++++++++++++++ .github/workflows/auto_assign_reviewer.yml | 21 +++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/auto_assign.yml create mode 100644 .github/workflows/auto_assign_reviewer.yml diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml new file mode 100644 index 000000000..37f81e41b --- /dev/null +++ b/.github/auto_assign.yml @@ -0,0 +1,18 @@ +# Set to true to add reviewers to pull requests +addReviewers: true + +# Set to true to add assignees to pull requests +addAssignees: false + +# A list of reviewers to be added to pull requests (GitHub user name) +reviewers: + - localden + - pmaytak + - gladjohn + - bgavrilMS + - neha-bhargava + - trwalke + +# A number of reviewers added to the pull request +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 0 diff --git a/.github/workflows/auto_assign_reviewer.yml b/.github/workflows/auto_assign_reviewer.yml new file mode 100644 index 000000000..b0f1ac6ca --- /dev/null +++ b/.github/workflows/auto_assign_reviewer.yml @@ -0,0 +1,21 @@ +name: 'Auto Assign' +on: + pull_request_target: + types: [opened, ready_for_review] + +permissions: + contents: read + +jobs: + add-reviews: + permissions: + contents: read # for kentaro-m/auto-assign-action to fetch config file + pull-requests: write # for kentaro-m/auto-assign-action to assign PR reviewers + runs-on: ubuntu-latest + steps: + - name: Harden Runner + uses: step-security/harden-runner@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845 # v2.4.1 + with: + egress-policy: audit + + - uses: kentaro-m/auto-assign-action@6b1ff132d1a90349f611f44a589088d13a8beb75 # v1.2.2 From 534dc16625dff78197be8441865b561c848a99cc Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 21 Aug 2023 16:09:35 +0000 Subject: [PATCH 31/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=381286&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- ...oftIdentity_Pages_Account_AccessDenied.xml | 14 ++++- ..._MicrosoftIdentity_Pages_Account_Error.xml | 14 ++++- ...rosoftIdentity_Pages_Account_SignedOut.xml | 14 ++++- ...eas_MicrosoftIdentity_Pages__ViewStart.xml | 14 ++++- .../msal-model-dotnet-latest.xml | 25 +++++---- .../CredentialDescription.xml | 22 ++++---- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 +- .../WebApiBuilders.xml | 2 + .../OwinTokenAcquirerFactory.xml | 4 ++ .../IJwtBearerMiddlewareDiagnostics.xml | 2 + .../IOpenIdConnectMiddlewareDiagnostics.xml | 2 + .../JwtBearerMiddlewareDiagnostics.xml | 3 ++ ...icrosoftIdentityIssuerValidatorFactory.xml | 3 ++ .../OpenIdConnectMiddlewareDiagnostics.xml | 3 ++ .../RequiredScopeAttribute.xml | 6 +++ .../RequiredScopeOrAppPermissionAttribute.xml | 7 +++ .../RolesRequiredHttpContextExtensions.xml | 2 + .../ScopesRequiredHttpContextExtensions.xml | 2 + .../DistributedTokenCacheAdapterExtension.xml | 2 + .../MsalDistributedTokenCacheAdapter.xml | 8 +++ ...salDistributedTokenCacheAdapterOptions.xml | 7 +++ .../InMemoryTokenCacheProviderExtension.xml | 2 + .../MsalMemoryTokenCacheOptions.xml | 3 ++ .../MsalMemoryTokenCacheProvider.xml | 6 +++ .../MsalSessionTokenCacheProvider.xml | 7 +++ .../SessionTokenCacheProviderExtension.xml | 3 ++ .../CacheSerializerHints.xml | 4 ++ .../IMsalTokenCacheProvider.xml | 4 ++ .../MsalAbstractTokenCacheProvider.xml | 14 +++++ .../AccountController.xml | 7 +++ .../AccessDeniedModel.xml | 3 ++ .../ErrorModel.xml | 6 +++ .../SignedOutModel.xml | 3 ++ .../ServiceCollectionExtensions.xml | 2 + .../AadIssuerValidatorOptions.xml | 3 ++ .../AccountExtensions.xml | 2 + .../ApiControllerExtensions.xml | 4 ++ .../AppBuilderExtension.xml | 3 ++ ...ervicesAuthenticationBuilderExtensions.xml | 2 + .../AppServicesAuthenticationDefaults.xml | 2 + .../AppServicesAuthenticationHandler.xml | 3 ++ .../AppServicesAuthenticationInformation.xml | 3 ++ .../AppServicesAuthenticationOptions.xml | 2 + ...ServicesAuthenticationTokenAcquisition.xml | 9 ++++ .../ApplicationBuilderExtensions.xml | 2 + .../AuthorizeForScopesAttribute.xml | 7 +++ ...ionsAuthenticationHttpContextExtension.xml | 2 + ...reIdentityForKubernetesClientAssertion.xml | 4 ++ .../BaseRequestExtensions.xml | 10 ++++ .../CertificateDescription.xml | 13 +++++ .../CertificateSource.xml | 7 +++ .../CertificatelessOptions.xml | 4 ++ .../Microsoft.Identity.Web/ClaimConstants.xml | 19 +++++++ .../ClaimsPrincipalExtensions.xml | 11 ++++ .../ClaimsPrincipalFactory.xml | 3 ++ .../ClientAssertion.xml | 4 ++ .../ClientAssertionProviderBase.xml | 5 ++ .../xml/Microsoft.Identity.Web/Constants.xml | 13 +++++ .../ControllerBaseExtensions.xml | 4 ++ .../CookiePolicyOptionsExtensions.xml | 4 ++ .../DefaultCertificateLoader.xml | 8 +++ .../DefaultCredentialsLoader.xml | 7 +++ .../DownstreamWebApi.xml | 5 ++ .../DownstreamWebApiExtensions.xml | 3 ++ .../DownstreamWebApiGenericExtensions.xml | 7 +++ .../DownstreamWebApiOptions.xml | 9 ++++ .../GraphServiceCollectionExtensions.xml | 6 +++ .../IAuthRequiredScopeMetadata.xml | 3 ++ ...thRequiredScopeOrAppPermissionMetadata.xml | 5 ++ .../ICertificateLoader.xml | 2 + .../IDownstreamWebApi.xml | 7 +++ .../ILoginErrorAccessor.xml | 4 ++ ...AuthenticationDelegatingHandlerFactory.xml | 3 ++ .../ITokenAcquisition.xml | 13 +++++ .../ManagedIdentityClientAssertion.xml | 3 ++ .../MicrosoftGraphExtensions.xml | 12 +++++ .../MicrosoftGraphOptions.xml | 8 +++ ...dentityAppAuthenticationMessageHandler.xml | 3 ++ ...ityAppCallsWebApiAuthenticationBuilder.xml | 3 ++ ...lsWebApiAuthenticationBuilderExtension.xml | 2 + ...entityAuthenticationBaseMessageHandler.xml | 4 ++ ...osoftIdentityAuthenticationBaseOptions.xml | 9 ++++ ...sageHandlerHttpClientBuilderExtensions.xml | 5 ++ ...ityAuthenticationMessageHandlerOptions.xml | 4 ++ ...osoftIdentityBaseAuthenticationBuilder.xml | 4 ++ ...ntityBlazorServiceCollectionExtensions.xml | 3 ++ ...tityConsentAndConditionalAccessHandler.xml | 7 +++ .../MicrosoftIdentityOptions.xml | 22 ++++++++ ...entityUserAuthenticationMessageHandler.xml | 3 ++ ...oftIdentityWebApiAuthenticationBuilder.xml | 2 + ...yWebApiAuthenticationBuilderExtensions.xml | 4 ++ ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebApiServiceCollectionExtensions.xml | 2 + ...oftIdentityWebAppAuthenticationBuilder.xml | 3 ++ ...yWebAppAuthenticationBuilderExtensions.xml | 4 ++ ...AuthenticationBuilderWithConfiguration.xml | 2 + ...ntityWebAppServiceCollectionExtensions.xml | 2 + ...osoftIdentityWebChallengeUserException.xml | 5 ++ .../PolicyBuilderExtensions.xml | 4 ++ .../PrincipalExtensionsForSecurityTokens.xml | 51 +++++++++++++++++++ .../RequiredScopeExtensions.xml | 3 ++ ...RequiredScopeOrAppPermissionExtensions.xml | 3 ++ .../ScopeAuthorizationRequirement.xml | 5 ++ ...rAppPermissionAuthorizationRequirement.xml | 7 +++ .../ServiceCollectionExtensions.xml | 2 + .../TokenAcquirerAppTokenCredential.xml | 4 ++ .../TokenAcquirerFactory.xml | 13 +++++ .../TokenAcquirerTokenCredential.xml | 4 ++ .../TokenAcquisitionAppTokenCredential.xml | 4 ++ .../TokenAcquisitionOptions.xml | 5 ++ .../TokenAcquisitionTokenCredential.xml | 4 ++ .../TokenCacheExtensions.xml | 4 ++ .../msal-model-dotnet-latest.json | 2 +- 115 files changed, 653 insertions(+), 35 deletions(-) create mode 100644 dotnet/xml/Microsoft.Identity.Web/PrincipalExtensionsForSecurityTokens.xml diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml index 3a3ec7969..fa472f336 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_AccessDenied.xml @@ -14,6 +14,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -21,8 +22,8 @@ - [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "734e56f04398256831f9badafee121c1f76baf8f", "/Areas/MicrosoftIdentity/Pages/Account/AccessDenied.cshtml")] - [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "734e56f04398256831f9badafee121c1f76baf8f", "/Areas/MicrosoftIdentity/Pages/Account/AccessDenied.cshtml")>] + [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "9d8d60f54147d93f292815b6a0a94521f0e0e405d6ec8c9d264efe5679d4b373", "/Areas/MicrosoftIdentity/Pages/Account/AccessDenied.cshtml")] + [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "9d8d60f54147d93f292815b6a0a94521f0e0e405d6ec8c9d264efe5679d4b373", "/Areas/MicrosoftIdentity/Pages/Account/AccessDenied.cshtml")>] @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -70,6 +72,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -103,6 +106,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -131,6 +135,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -164,6 +169,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -197,6 +203,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel @@ -224,6 +231,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -257,6 +265,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -290,6 +299,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.AccessDeniedModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml index 7724c01a5..e02e88e24 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_Error.xml @@ -14,6 +14,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -21,8 +22,8 @@ - [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "fcf57a894dc2198a3511e5edfcb56762693f0160", "/Areas/MicrosoftIdentity/Pages/Account/Error.cshtml")] - [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "fcf57a894dc2198a3511e5edfcb56762693f0160", "/Areas/MicrosoftIdentity/Pages/Account/Error.cshtml")>] + [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "2ccc5ec39175e39270d62278cb72fa33cac0eaf2756b7d5668e6d506ae84c20f", "/Areas/MicrosoftIdentity/Pages/Account/Error.cshtml")] + [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "2ccc5ec39175e39270d62278cb72fa33cac0eaf2756b7d5668e6d506ae84c20f", "/Areas/MicrosoftIdentity/Pages/Account/Error.cshtml")>] @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -70,6 +72,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -103,6 +106,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -131,6 +135,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -164,6 +169,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -197,6 +203,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel @@ -224,6 +231,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -257,6 +265,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -290,6 +299,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.ErrorModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml index 4ceb9dff4..e796e449a 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages_Account_SignedOut.xml @@ -14,6 +14,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.Page @@ -21,8 +22,8 @@ - [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "57251964670fcc93743a9a29ac1669e77aea8097", "/Areas/MicrosoftIdentity/Pages/Account/SignedOut.cshtml")] - [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "57251964670fcc93743a9a29ac1669e77aea8097", "/Areas/MicrosoftIdentity/Pages/Account/SignedOut.cshtml")>] + [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "51a7d017e169162d955429c546169a43a8965668ed65409c394e3a374bcfa56b", "/Areas/MicrosoftIdentity/Pages/Account/SignedOut.cshtml")] + [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "51a7d017e169162d955429c546169a43a8965668ed65409c394e3a374bcfa56b", "/Areas/MicrosoftIdentity/Pages/Account/SignedOut.cshtml")>] @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -70,6 +72,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -103,6 +106,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -131,6 +135,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -164,6 +169,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -197,6 +203,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel @@ -224,6 +231,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -257,6 +265,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -290,6 +299,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account.SignedOutModel> diff --git a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml index bb4575733..fa8a44c61 100644 --- a/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml +++ b/dotnet/xml/AspNetCore/Areas_MicrosoftIdentity_Pages__ViewStart.xml @@ -14,6 +14,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.Razor.RazorPage<System.Object> @@ -24,8 +25,8 @@ - [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "932f7ea9b45dd2bb9c1c2a9dc0e9674c85235277", "/Areas/MicrosoftIdentity/Pages/_ViewStart.cshtml")] - [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA1", "932f7ea9b45dd2bb9c1c2a9dc0e9674c85235277", "/Areas/MicrosoftIdentity/Pages/_ViewStart.cshtml")>] + [Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "43321d22b7736fcd6e5ed8f7073f90761dcb3a6760e2383ccca0f3213820a79e", "/Areas/MicrosoftIdentity/Pages/_ViewStart.cshtml")] + [<Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksum("SHA256", "43321d22b7736fcd6e5ed8f7073f90761dcb3a6760e2383ccca0f3213820a79e", "/Areas/MicrosoftIdentity/Pages/_ViewStart.cshtml")>] @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -73,6 +75,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -106,6 +109,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -139,6 +143,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -172,6 +177,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -200,6 +206,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -233,6 +240,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -266,6 +274,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -299,6 +308,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml index d970361f4..853885977 100644 --- a/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-model-dotnet-latest.xml @@ -2,18 +2,18 @@ - - - - + + + + - - - - - - - + + + + + + + @@ -647,6 +647,9 @@ + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index 25c4637f1..deebe8a5a 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c57d11902..0821d268c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 28e9c81ff..d65851628 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 003f6f605..717521f9c 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml index 117995c64..641c9b919 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Internal/WebApiBuilders.xml @@ -20,6 +20,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -55,6 +56,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml index 34b9e719b..6b7cc7733 100644 --- a/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.OWIN/OwinTokenAcquirerFactory.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenAcquirerFactory @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -111,6 +114,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml index e997633c7..040674133 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IJwtBearerMiddlewareDiagnostics.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -36,6 +37,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml index 616c74cc4..11daa7d1e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/IOpenIdConnectMiddlewareDiagnostics.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -37,6 +38,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml index 45dd5741d..608d236ca 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/JwtBearerMiddlewareDiagnostics.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -43,6 +44,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -74,6 +76,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml index f989b6d62..06d3fad12 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/MicrosoftIdentityIssuerValidatorFactory.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -68,6 +70,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.IdentityModel.Validators.AadIssuerValidator diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml index 826757659..395444c6e 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/OpenIdConnectMiddlewareDiagnostics.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -44,6 +45,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml index 2b8a1c7f5..971368bcd 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeAttribute.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Attribute @@ -52,6 +53,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -84,6 +86,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -131,6 +134,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -158,6 +162,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -185,6 +190,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml index 7f99c898f..3d59903fe 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RequiredScopeOrAppPermissionAttribute.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Attribute @@ -53,6 +54,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -85,6 +87,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -128,6 +131,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -156,6 +160,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -183,6 +188,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -218,6 +224,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml index 30ac6ba5d..68c881005 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/RolesRequiredHttpContextExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -40,6 +41,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml index 183a30f67..14766af8b 100644 --- a/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.Resource/ScopesRequiredHttpContextExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -43,6 +44,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml index 1c809694e..1e5a97af6 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/DistributedTokenCacheAdapterExtension.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml index 66ed8804c..02e630537 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapter.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -89,6 +91,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -127,6 +130,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -167,6 +171,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -204,6 +209,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -243,6 +249,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -281,6 +288,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml index 326a7bcdc..e458c10f0 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Distributed/MsalDistributedTokenCacheAdapterOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -77,6 +79,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -112,6 +115,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -147,6 +151,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -180,6 +185,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.Caching.Memory.MemoryCacheOptions @@ -212,6 +218,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Func<System.Exception,System.Boolean> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml index c34ba9e1d..1680a408f 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/InMemoryTokenCacheProviderExtension.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml index f8acc6468..396518846 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -76,6 +78,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml index 314070a17..f230a1985 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.InMemory/MsalMemoryTokenCacheProvider.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -83,6 +85,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -119,6 +122,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -156,6 +160,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -194,6 +199,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml index 8ec8176d8..5dcaaea13 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/MsalSessionTokenCacheProvider.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenCacheProviders.MsalAbstractTokenCacheProvider @@ -57,6 +58,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -89,6 +91,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -115,6 +118,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -147,6 +151,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -181,6 +186,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -212,6 +218,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml index 3bceb3f21..b81c03e90 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders.Session/SessionTokenCacheProviderExtension.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml index c13942e86..73ce00598 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/CacheSerializerHints.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.CancellationToken @@ -107,6 +110,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Nullable<System.DateTimeOffset> diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml index e0922c74a..5690644ae 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/IMsalTokenCacheProvider.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -82,6 +84,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -117,6 +120,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml index f6fad89bf..391296cfc 100644 --- a/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml +++ b/dotnet/xml/Microsoft.Identity.Web.TokenCacheProviders/MsalAbstractTokenCacheProvider.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -54,6 +55,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -87,6 +89,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -125,6 +128,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -160,6 +164,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -199,6 +204,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -237,6 +243,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -273,6 +280,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -309,6 +317,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -345,6 +354,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Byte[]> @@ -383,6 +393,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -419,6 +430,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -457,6 +469,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -495,6 +508,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml index a579ed66a..4630b1435 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Controllers/AccountController.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.Controller @@ -67,6 +68,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -100,6 +102,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -161,6 +164,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -210,6 +214,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -259,6 +264,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -317,6 +323,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml index 54cedd821..16775432a 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/AccessDeniedModel.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -54,6 +55,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml index 6dea58585..2a4b91744 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/ErrorModel.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -59,6 +60,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -91,6 +93,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.ILoginErrorAccessor @@ -124,6 +127,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -157,6 +161,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -190,6 +195,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml index 229b8339e..5503370e4 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI.Areas.MicrosoftIdentity.Pages.Account/SignedOutModel.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.RazorPages.PageModel @@ -54,6 +55,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.IActionResult diff --git a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml index c0510b0c7..c41f3ae30 100644 --- a/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web.UI/ServiceCollectionExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IMvcBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml index 18546064b..ce9baf1c5 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AadIssuerValidatorOptions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -38,6 +39,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -60,6 +62,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml index 1d68de42b..087a90138 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AccountExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml index 76c51b9ed..c9d0e1a4b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApiControllerExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -122,6 +125,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml index 7bdeff9c5..0509cc088 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppBuilderExtension.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Owin.IAppBuilder @@ -93,6 +95,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Owin.IAppBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml index 9db841677..12dba9325 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.AuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml index 0e2612654..ac7d6e72b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationDefaults.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml index b6dbb4056..010f4e60a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationHandler.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.AuthenticationHandler<Microsoft.Identity.Web.AppServicesAuthenticationOptions> @@ -42,6 +43,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -77,6 +79,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticateResult> diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml index 37a811c07..c551748e0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationInformation.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -66,6 +68,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml index 76b21f6ed..bb8606771 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationOptions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions @@ -38,6 +39,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml index 2429393c3..6f5b3ac70 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AppServicesAuthenticationTokenAcquisition.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -43,6 +44,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -77,6 +79,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -116,6 +119,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -159,6 +163,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -198,6 +203,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -241,6 +247,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -274,6 +281,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -312,6 +320,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task diff --git a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml index 0d95f84e3..a5b4db6cf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ApplicationBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Builder.IApplicationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml index d6fb7c255..a338f8de0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AuthorizeForScopesAttribute.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Mvc.Filters.ExceptionFilterAttribute @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -68,6 +70,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -95,6 +98,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -125,6 +129,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -152,6 +157,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -179,6 +185,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml index 97dfac08a..6bbbefb1e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureFunctionsAuthenticationHttpContextExtension.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.ValueTuple<System.Boolean,Microsoft.AspNetCore.Mvc.IActionResult>> diff --git a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml index c4baf08cc..609693300 100644 --- a/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/AzureIdentityForKubernetesClientAssertion.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -73,6 +75,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -108,6 +111,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml index 9e2e4d039..803080f24 100644 --- a/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/BaseRequestExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -26,6 +27,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -58,6 +60,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -67,6 +70,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 T @@ -115,6 +119,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -124,6 +129,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 T @@ -171,6 +177,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -180,6 +187,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 T @@ -228,6 +236,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -237,6 +246,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 T diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml index a9b7d5ab7..835e7c7d4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateDescription.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.CredentialDescription @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -77,6 +79,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -109,6 +112,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -141,6 +145,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -177,6 +182,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -215,6 +221,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -251,6 +258,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -289,6 +297,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -327,6 +336,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -368,6 +378,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateDescription @@ -408,6 +419,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -440,6 +452,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml index defbf270d..ebf07fe7b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificateSource.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Enum @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -79,6 +81,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -110,6 +113,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -141,6 +145,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -172,6 +177,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource @@ -203,6 +209,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificateSource diff --git a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml index d1b0789da..c7c689ba8 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CertificatelessOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -76,6 +78,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -109,6 +112,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml index e766b9e93..6e0d08d68 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimConstants.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -80,6 +82,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -111,6 +114,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -142,6 +146,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -173,6 +178,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -204,6 +210,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -235,6 +242,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -266,6 +274,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -297,6 +306,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -328,6 +338,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -359,6 +370,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -390,6 +402,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -421,6 +434,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -452,6 +466,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -483,6 +498,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -514,6 +530,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -546,6 +563,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -578,6 +596,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml index 70eedca72..f9837338b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -122,6 +125,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -158,6 +162,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -194,6 +199,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -230,6 +236,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -266,6 +273,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -302,6 +310,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -338,6 +347,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -374,6 +384,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml index 996834a5e..d581314a0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClaimsPrincipalFactory.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Claims.ClaimsPrincipal @@ -90,6 +92,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml index 758a86a55..6b4d95e12 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertion.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -85,6 +87,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Nullable<System.DateTimeOffset> @@ -117,6 +120,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml index 4bd271f83..f948e5f1d 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ClientAssertionProviderBase.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -76,6 +78,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Nullable<System.DateTimeOffset> @@ -108,6 +111,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> @@ -144,6 +148,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.Identity.Web/Constants.xml b/dotnet/xml/Microsoft.Identity.Web/Constants.xml index 5561505c3..c48121411 100644 --- a/dotnet/xml/Microsoft.Identity.Web/Constants.xml +++ b/dotnet/xml/Microsoft.Identity.Web/Constants.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -113,6 +116,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -145,6 +149,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -177,6 +182,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -209,6 +215,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -240,6 +247,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -272,6 +280,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -304,6 +313,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -335,6 +345,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -367,6 +378,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -398,6 +410,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml index b58a32b1f..c39f2290b 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ControllerBaseExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.IAuthorizationHeaderProvider @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.IDownstreamApi @@ -122,6 +125,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Graph.GraphServiceClient diff --git a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml index efbb78ae1..3acbcef06 100644 --- a/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/CookiePolicyOptionsExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -74,6 +76,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions @@ -109,6 +112,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Builder.CookiePolicyOptions diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml index 30bdff82b..360e46909 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCertificateLoader.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.DefaultCredentialsLoader @@ -63,6 +64,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -118,6 +121,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<System.Security.Cryptography.X509Certificates.X509Certificate2> @@ -154,6 +158,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -193,6 +198,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -228,6 +234,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -264,6 +271,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml index 86a461a16..ceda6a2fc 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DefaultCredentialsLoader.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -52,6 +53,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -110,6 +113,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IDictionary<Microsoft.Identity.Abstractions.CredentialSource,Microsoft.Identity.Abstractions.ICredentialSourceLoader> @@ -146,6 +150,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task @@ -186,6 +191,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Abstractions.CredentialDescription> @@ -226,6 +232,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml index a36868c74..0c8e88533 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApi.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -53,6 +54,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -89,6 +91,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -128,6 +131,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -169,6 +173,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml index d6f36487b..fa2859fce 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -89,6 +91,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml index 575a02eae..3e9d83154 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiGenericExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -108,6 +110,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -174,6 +177,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -244,6 +248,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -319,6 +324,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -387,6 +393,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml index b81bd4d10..93801b56c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/DownstreamWebApiOptions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -43,6 +44,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -65,6 +67,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -92,6 +95,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.DownstreamWebApiOptions @@ -120,6 +124,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Action<System.Net.Http.HttpRequestMessage> @@ -149,6 +154,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -177,6 +183,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Net.Http.HttpMethod @@ -204,6 +211,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -234,6 +242,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml index d96eebe61..3b2bc18eb 100644 --- a/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/GraphServiceCollectionExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -26,6 +27,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -59,6 +61,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -68,6 +71,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -104,6 +108,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -113,6 +118,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml index 011e6f615..f7c0dd278 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeMetadata.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -38,6 +39,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -65,6 +67,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml index 04bcad912..a57953ccb 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IAuthRequiredScopeOrAppPermissionMetadata.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -38,6 +39,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -66,6 +68,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -93,6 +96,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -121,6 +125,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml index 5b1e3e65f..a4400f07e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ICertificateLoader.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -57,6 +58,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml index bc488a69a..d47e4a819 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IDownstreamWebApi.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -46,6 +47,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -86,6 +88,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -129,6 +132,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -174,6 +178,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> @@ -222,6 +227,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -310,6 +316,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml index 2cfdc8d1f..cfb1d65bd 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ILoginErrorAccessor.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -37,6 +38,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -68,6 +70,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -95,6 +98,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void diff --git a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml index ddd1febfd..c10ac6db3 100644 --- a/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/IMicrosoftIdentityAuthenticationDelegatingHandlerFactory.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -37,6 +38,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Net.Http.DelegatingHandler @@ -74,6 +76,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Net.Http.DelegatingHandler diff --git a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml index 9d1a88718..1ab06a5c4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ITokenAcquisition.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -41,6 +42,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -87,6 +89,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -131,6 +134,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -180,6 +184,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.String> @@ -226,6 +231,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -272,6 +278,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -316,6 +323,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -364,6 +372,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Client.AuthenticationResult> @@ -415,6 +424,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -448,6 +458,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -485,6 +496,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -525,6 +537,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml index 9e68576f4..a94e4e267 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ManagedIdentityClientAssertion.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.ClientAssertionProviderBase @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<Microsoft.Identity.Web.ClientAssertion> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml index 508db487d..8133bb5d9 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -21,6 +22,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -58,6 +61,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -97,6 +101,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -106,6 +111,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -139,6 +145,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -148,6 +155,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -183,6 +191,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -192,6 +201,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -227,6 +237,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -236,6 +247,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml index 057292e86..b4b631581 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftGraphOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -26,6 +27,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -57,6 +59,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -66,6 +69,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -93,6 +97,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -102,6 +107,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -136,6 +142,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftGraphBeta @@ -145,6 +152,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml index 04a7f82e1..b338e984c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppAuthenticationMessageHandler.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -70,6 +72,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml index 46b0e8aa6..5b42574aa 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder @@ -83,6 +85,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml index 6c7d6c781..db328a0af 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAppCallsWebApiAuthenticationBuilderExtension.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -40,6 +41,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml index 7268a2f76..5aa09b9a9 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseMessageHandler.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Net.Http.DelegatingHandler @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -70,6 +72,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -101,6 +104,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.ITokenAcquisition diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml index 489e88cef..7d7192932 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationBaseOptions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -38,6 +39,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -62,6 +64,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -90,6 +93,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -118,6 +122,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -149,6 +154,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -177,6 +183,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -206,6 +213,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -233,6 +241,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml index 2b48f1ecb..eabf5ca05 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerHttpClientBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -80,6 +82,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder @@ -115,6 +118,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -156,6 +160,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IHttpClientBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml index 646b9f092..2b84d9b7c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityAuthenticationMessageHandlerOptions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseOptions @@ -42,6 +43,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -64,6 +66,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationMessageHandlerOptions @@ -95,6 +98,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml index 7f5f32da6..a3fb4f836 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBaseAuthenticationBuilder.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -50,6 +51,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -90,6 +92,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.Configuration.IConfigurationSection @@ -123,6 +126,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml index 8db30953e..aefe1c53a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityBlazorServiceCollectionExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServerSideBlazorBuilder @@ -71,6 +73,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml index 808aed4fa..9f69d44d4 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityConsentAndConditionalAccessHandler.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -40,6 +41,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -67,6 +69,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -94,6 +97,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -133,6 +137,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -164,6 +169,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -191,6 +197,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml index 63cf0e042..8b14a6f59 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -111,6 +114,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -155,6 +159,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -185,6 +190,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.CertificatelessOptions @@ -217,6 +223,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -249,6 +256,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -281,6 +289,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -313,6 +322,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -345,6 +355,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -377,6 +388,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -409,6 +421,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -444,6 +457,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Nullable<Microsoft.AspNetCore.Http.PathString> @@ -478,6 +492,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -510,6 +525,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean @@ -548,6 +564,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -580,6 +597,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -612,6 +630,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Web.CertificateDescription> @@ -656,6 +675,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<Microsoft.Identity.Abstractions.CredentialDescription> @@ -686,6 +706,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -719,6 +740,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Boolean diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml index 6edd6b500..727e42f22 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityUserAuthenticationMessageHandler.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityAuthenticationBaseMessageHandler @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -72,6 +74,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml index d0ea346f2..cccd01d09 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilder.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml index c37b9a280..9d29148fb 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -85,6 +87,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -133,6 +136,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml index 2305eb8cd..8fe69dd33 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiAuthenticationBuilderWithConfiguration.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityWebApiAuthenticationBuilder @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml index d618c9ecf..307cb7824 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebApiServiceCollectionExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml index 087a8fd89..4ef0c1e1a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilder.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityBaseAuthenticationBuilder @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -76,6 +78,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml index 727890af9..f347685c0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -87,6 +89,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -138,6 +141,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml index c967e5952..de73e5d17 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppAuthenticationBuilderWithConfiguration.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.MicrosoftIdentityWebAppAuthenticationBuilder @@ -40,6 +41,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml index b279033a5..74e919a92 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebAppServiceCollectionExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 diff --git a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml index 1bac2b8cc..7e4a737de 100644 --- a/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml +++ b/dotnet/xml/Microsoft.Identity.Web/MicrosoftIdentityWebChallengeUserException.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Exception @@ -51,6 +52,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -87,6 +89,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Client.MsalUiRequiredException @@ -119,6 +122,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String[] @@ -151,6 +155,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml index b795a1020..a4fbc3519 100644 --- a/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/PolicyBuilderExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -47,6 +48,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder @@ -122,6 +125,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/PrincipalExtensionsForSecurityTokens.xml b/dotnet/xml/Microsoft.Identity.Web/PrincipalExtensionsForSecurityTokens.xml new file mode 100644 index 000000000..df46eb5d7 --- /dev/null +++ b/dotnet/xml/Microsoft.Identity.Web/PrincipalExtensionsForSecurityTokens.xml @@ -0,0 +1,51 @@ + + + + + + + + Microsoft.Identity.Web.TokenAcquisition + 2.13.3.0 + + + System.Object + + + + + Extensions to retrieve a from . + + To be added. + + + + + + + + + Method + + Microsoft.Identity.Web.TokenAcquisition + 2.13.3.0 + + + Microsoft.IdentityModel.Tokens.SecurityToken + + + + + + + + Get the used to call a protected web API. + + + + + To be added. + + + + diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml index 0e2129ad7..9e2ba1009 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -71,6 +73,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml index 551f8cae6..8379c85bf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/RequiredScopeOrAppPermissionExtensions.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -39,6 +40,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -72,6 +74,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 TBuilder diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml index 3703f6bc3..a47d2848a 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeAuthorizationRequirement.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -72,6 +74,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<System.String> @@ -99,6 +102,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -126,6 +130,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml index 5864f9a91..9882a9c3e 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ScopeOrAppPermissionAuthorizationRequirement.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -74,6 +76,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<System.String> @@ -101,6 +104,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -128,6 +132,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -155,6 +160,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Collections.Generic.IEnumerable<System.String> @@ -182,6 +188,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String diff --git a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml index 6f9992eea..6e1ad75f1 100644 --- a/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/ServiceCollectionExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -49,6 +50,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.IServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml index e0e1c5c5a..94bc2b574 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerAppTokenCredential.xml @@ -10,6 +10,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.TokenCredential @@ -35,6 +36,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -60,6 +62,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.AccessToken @@ -90,6 +93,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml index a53b8bd67..6be766bc2 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerFactory.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -52,6 +53,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -81,6 +83,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.IServiceProvider @@ -123,6 +126,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.Configuration.IConfiguration @@ -156,6 +160,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.String @@ -193,6 +198,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -241,6 +247,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -301,6 +308,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -339,6 +347,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -374,6 +383,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.ITokenAcquirer @@ -415,6 +425,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Void @@ -447,6 +458,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.IServiceProvider @@ -480,6 +492,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Extensions.DependencyInjection.ServiceCollection diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml index cce7014b7..f56e58fc0 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquirerTokenCredential.xml @@ -10,6 +10,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.TokenCredential @@ -35,6 +36,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -60,6 +62,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.AccessToken @@ -90,6 +93,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml index e8559e484..a80199caf 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionAppTokenCredential.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.TokenCredential @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -72,6 +74,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.AccessToken @@ -104,6 +107,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml index 8c5bffe2f..a7980cd78 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionOptions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Abstractions.AcquireTokenOptions @@ -48,6 +49,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -75,6 +77,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.CancellationToken @@ -107,6 +110,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Web.TokenAcquisitionOptions @@ -140,6 +144,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Client.AppConfig.PoPAuthenticationConfiguration diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml index 06c27fa94..ebc857524 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenAcquisitionTokenCredential.xml @@ -12,6 +12,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.TokenCredential @@ -45,6 +46,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 @@ -72,6 +74,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Azure.Core.AccessToken @@ -104,6 +107,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Threading.Tasks.ValueTask<Azure.Core.AccessToken> diff --git a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml index 945dbc67e..ea499980c 100644 --- a/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml +++ b/dotnet/xml/Microsoft.Identity.Web/TokenCacheExtensions.xml @@ -17,6 +17,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 System.Object @@ -51,6 +52,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -107,6 +109,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Client.IConfidentialClientApplication @@ -153,6 +156,7 @@ 2.13.0.0 2.13.1.0 2.13.2.0 + 2.13.3.0 Microsoft.Identity.Client.IConfidentialClientApplication diff --git a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json index 9a007ae37..7d0fcab27 100644 --- a/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-model-dotnet-latest.json @@ -1 +1 @@ -{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.2","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-model-dotnet-latest":{"Microsoft.Identity.Abstractions":{"Name":"Microsoft.Identity.Abstractions","Version":"4.0.0","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web":{"Name":"Microsoft.Identity.Web","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificate":{"Name":"Microsoft.Identity.Web.Certificate","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Certificateless":{"Name":"Microsoft.Identity.Web.Certificateless","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.DownstreamRestApi":{"Name":"Microsoft.Identity.Web.DownstreamRestApi","Version":"2.0.8-preview","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenCache":{"Name":"Microsoft.Identity.Web.TokenCache","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraph":{"Name":"Microsoft.Identity.Web.MicrosoftGraph","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.MicrosoftGraphBeta":{"Name":"Microsoft.Identity.Web.MicrosoftGraphBeta","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.OWIN":{"Name":"Microsoft.Identity.Web.OWIN","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.TokenAcquisition":{"Name":"Microsoft.Identity.Web.TokenAcquisition","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.UI.Views":{"Name":"Microsoft.Identity.Web.UI","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.Identity.Web.Azure":{"Name":"Microsoft.Identity.Web.Azure","Version":"2.13.3","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file From 9da98e91e13549fdd76d10094db62a9a200d4ea8 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:50:29 -0700 Subject: [PATCH 32/63] Update msal-dotnet-articles/advanced/proof-of-possession-tokens.md Co-authored-by: Peter <34331512+pmaytak@users.noreply.github.com> --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index 725483432..fa6d98fd6 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -16,7 +16,7 @@ For more details, see [RFC 7800](https://tools.ietf.org/html/rfc7800). ## Does the protected resource accept PoP tokens? -If you make an unauthenticated request to a protected API, it should repond with HTTP 401 (Unauthenticated) reponse, and with some [WWW-Authenticate](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/WWW-Authenticate) headers. These headers inform the clients of the available authentication schemes, such as Basic, NTLM, Bearer and POP. The MSAL family of libraries can help with Bearer and PoP. +If you make an unauthenticated request to a protected API, it should reply with HTTP 401 Unauthorized response, and with some [WWW-Authenticate](https://developer.mozilla.org/docs/Web/HTTP/Headers/WWW-Authenticate) headers. These headers inform the clients of the available authentication schemes, such as Basic, NTLM, Bearer, and POP. The MSAL family of libraries can help with Bearer and PoP. Programatically, MSAL.NET offers [a helper API](extract-authentication-parameters.md) for parsing these headers. From 12f65a063ca0d44bd79d5589fc96d3e2796c4e78 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:50:49 -0700 Subject: [PATCH 33/63] Update msal-dotnet-articles/advanced/proof-of-possession-tokens.md Co-authored-by: Peter <34331512+pmaytak@users.noreply.github.com> --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index fa6d98fd6..c9f2b752a 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -84,7 +84,7 @@ If you want to do key management and to create the SHR yourself, see [this exam ## Proof-of-Possession for public clients -Proof-of-Possession on public client flows can be achieved with the use of the updated [Windows broker](../acquiring-tokens/desktop-mobile/wam.md) in MSAL 4.52.0 and above. Contrary to the confidential client flow, it is not possible to provide your own key to sign the PoP token. MSAL will use the best available keys which exist on the machine, typically hardware keys (see [TPM](https://learn.microsoft.com/windows/security/hardware-security/tpm/tpm-fundamentals). +Proof-of-Possession on public client flows can be achieved with the use of the updated [Windows broker](../acquiring-tokens/desktop-mobile/wam.md) in MSAL 4.52.0 and above. Contrary to the confidential client flow, it is not possible to provide your own key to sign the PoP token. MSAL will use the best available keys which exist on the machine, typically hardware keys (see [TPM](/windows/security/hardware-security/tpm/tpm-fundamentals)). It is possible that a client does not support creating PoP tokens. This is due to the fact that brokers (WAM, Company Portal) are not always present on the device or that the SDK does not implement the protocol on a specific operating system. Currently, PoP tokens are available on Windows 10+ and Windows Server 2019+. Use the API `publicClientApp.IsProofOfPossessionSupportedByClient()` to understand if POP is supported by the client. From 9b66cc5ce460a12acc982b7fb8c4ceec87f59ff8 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:56:32 -0700 Subject: [PATCH 34/63] Update proof-of-possession-tokens.md --- msal-dotnet-articles/advanced/proof-of-possession-tokens.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md index c9f2b752a..a0e2d1ba0 100644 --- a/msal-dotnet-articles/advanced/proof-of-possession-tokens.md +++ b/msal-dotnet-articles/advanced/proof-of-possession-tokens.md @@ -88,9 +88,7 @@ Proof-of-Possession on public client flows can be achieved with the use of the u It is possible that a client does not support creating PoP tokens. This is due to the fact that brokers (WAM, Company Portal) are not always present on the device or that the SDK does not implement the protocol on a specific operating system. Currently, PoP tokens are available on Windows 10+ and Windows Server 2019+. Use the API `publicClientApp.IsProofOfPossessionSupportedByClient()` to understand if POP is supported by the client. -### - -Example simple implementation: +Example implementation: ```csharp // Required for the use of the broker (on all supported platforms except .NET 6 Windows and above) From 29e3685141afdcc34db405a985574c85870e0fb7 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 23 Aug 2023 00:03:54 +0100 Subject: [PATCH 35/63] Update on-behalf-of-flow.md --- .../web-apps-apis/on-behalf-of-flow.md | 58 ++++++++++++++++--- 1 file changed, 50 insertions(+), 8 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md index 2520356b5..863f25717 100644 --- a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md +++ b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md @@ -7,16 +7,16 @@ description: "How to use MSAL.NET to authenticate on behalf of a user." ## If you are using ASP.NET Core -If you are building a web API on to of ASP.NET Core, we recommend that you use Microsoft.Identity.Web. See [Web APIs with Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apis). +If you are building a Web API on top of ASP.NET Core or ASP.NET Classic, we recommend that you use Microsoft.Identity.Web. See [Web APIs with Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apis). -You might want to check the decision tree: [Is MSAL.NET right for me?](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Is-MSAL.NET-right-for-me%3F). +Check the decision tree: [Is MSAL.NET right for me?](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Is-MSAL.NET-right-for-me%3F). ## Getting tokens on behalf of a user ### Scenario -- A client (web, desktop, mobile, single-page application) - not represented on the picture below - calls a protected web API, providing a JWT bearer token in its "Authorization" HTTP header. -- The protected web API validates the incoming user token, and uses MSAL.NET `AcquireTokenOnBehalfOf` method to request from Azure AD another token so that it can, itself, call another web API (named the downstream web API) on behalf of the user. +- A client (web site, desktop, mobile, single-page application) - not represented on the picture below - calls a protected web API, providing a JWT bearer token in its "Authorization" HTTP header. +- The protected web API validates the incoming user token, and uses MSAL.NET `AcquireTokenOnBehalfOf` method to request from Azure AD another token so that it can, itself, call another web API, for example Graph, named the downstream web API, on behalf of the user. This flow, named the On-Behalf-Of flow (OBO), is illustrated by the top part of the picture below. The bottom part is a daemon scenario, also possible for web APIs. @@ -51,11 +51,53 @@ private void AddAccountToCacheFromJwt(IEnumerable scopes, JwtSecurityTok var application = BuildConfidentialClientApplication(httpContext, principal); // .Result to make sure that the cache is filled-in before the controller tries to get access tokens - var result = await application.AcquireTokenOnBehalfOf( - requestedScopes.Except(scopesRequestedByMsalNet), - userAssertion) - .ExecuteAsync() + var result = await application.AcquireTokenOnBehalfOf(requestedScopes, userAssertion).ExecuteAsync() +} +``` + +## Handling multi-factor auth (MFA), conditional access and incremental consent + + +### Failure scenario + +It is a common scenario that a tenant administrator restricts access to the downstream API (for example to Graph), by requiring end-users to MFA. But often they do not place the same restrictions on the web api. + +1. The client (e.g. desktop app or web site) asks for a token for your web api. MFA is not enforced at this point! +2. The web api tries to exchange this token for a token for the downstream web api (e.g. Graph), through on-behalf-of. This fails, because access through Graph requires the user to have MFA-ed. The call to `AcquireTokenOnBehalfOf` will fail with an `MsalUiRequiredException` which will also have the `Claims` property set. + +### How to signal that MFA is needed to the client + +Conceptually, [the web api needs to send back the exception to the client](https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#error-response-example), with the claims string. +The [standard pattern](https://datatracker.ietf.org/doc/html/rfc6750#section-3.1) for signaling this failure to a client is to reply with HTTP 401 and with a WWW-Authenticate header which encapsulates the details of the failure. + + +#### The web api replies with 401 + WWW-Authenticate + +```csharp + +// This example is for an ASP.NET Core web api +public void ReplyForbiddenWithWwwAuthenticateHeader(MsalUiRequiredException ex) +{ + httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; + httpResponse.Headers[HeaderNames.WWWAuthenticate] = $"Bearer claims={ex.Claims}, error={ex.Message}; } + +``` + +#### The client + +The client needs to interpret 401 messages and to parse WWW-Authenticate headers. MSAL.NET offers parsing APIs: + +```csharp +// assuming an HttpResponseMessage response with StatusCode=HttpStatusCode.Unauthorized +WwwAuthenticateParameters wwwParams = WwwAuthenticateParameters.CreateFromAuthenticationHeaders(response.HttpResponseHeaders, "Bearer"); +string claims = wwwParams.Claims; // you may also extract other parameters such as Error and Authority + +// desktop or mobile app +app.AcquireTokenInteractieve(scopes).WithClaims(wwwParams.Claims); + +// web app - redirect to login page and add the claims to the authorization URL +RedirectToLogin(wwwParams.ConsentUri) ``` ## Long-running OBO processes From 46c4e0ce4a1e67e2df38b014c84b84e760bc6099 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Wed, 23 Aug 2023 14:43:42 +0100 Subject: [PATCH 36/63] Apply suggestions from code review Co-authored-by: Den Delimarsky <53200638+localden@users.noreply.github.com> --- .../web-apps-apis/on-behalf-of-flow.md | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md index 863f25717..c4a95c165 100644 --- a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md +++ b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/on-behalf-of-flow.md @@ -7,9 +7,9 @@ description: "How to use MSAL.NET to authenticate on behalf of a user." ## If you are using ASP.NET Core -If you are building a Web API on top of ASP.NET Core or ASP.NET Classic, we recommend that you use Microsoft.Identity.Web. See [Web APIs with Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apis). +If you are building a web API on top of ASP.NET Core or ASP.NET Classic, we recommend that you use Microsoft.Identity.Web. See [Web APIs with Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apis). -Check the decision tree: [Is MSAL.NET right for me?](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Is-MSAL.NET-right-for-me%3F). +Check the decision tree: [Is MSAL.NET right for me?](/entra/msal/dotnet/getting-started/choosing-msal-dotnet) ## Getting tokens on behalf of a user @@ -60,33 +60,31 @@ private void AddAccountToCacheFromJwt(IEnumerable scopes, JwtSecurityTok ### Failure scenario -It is a common scenario that a tenant administrator restricts access to the downstream API (for example to Graph), by requiring end-users to MFA. But often they do not place the same restrictions on the web api. +It is a common scenario that a tenant administrator restricts access to the downstream API (for example, to Graph) by requiring end-users to complete a Multi-Factor Authentication (MFA) challenge; however, they often do not place the same restrictions on the web API. -1. The client (e.g. desktop app or web site) asks for a token for your web api. MFA is not enforced at this point! -2. The web api tries to exchange this token for a token for the downstream web api (e.g. Graph), through on-behalf-of. This fails, because access through Graph requires the user to have MFA-ed. The call to `AcquireTokenOnBehalfOf` will fail with an `MsalUiRequiredException` which will also have the `Claims` property set. +1. The client (e.g., desktop app or web site) asks for a token for your web API. MFA is not enforced at this point. +2. The web API tries to exchange this token for a token for the downstream web API (e.g. Graph) via the on-behalf-of flow. This fails because access through Graph requires the user to have completed the MFA challenge. The call to `AcquireTokenOnBehalfOf` will fail with an `MsalUiRequiredException` which will also have the `Claims` property set. ### How to signal that MFA is needed to the client -Conceptually, [the web api needs to send back the exception to the client](https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#error-response-example), with the claims string. +The web API needs to [send the exception back to the client](/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#error-response-example) with the claims string. The [standard pattern](https://datatracker.ietf.org/doc/html/rfc6750#section-3.1) for signaling this failure to a client is to reply with HTTP 401 and with a WWW-Authenticate header which encapsulates the details of the failure. -#### The web api replies with 401 + WWW-Authenticate +#### The web API replies with 401 + WWW-Authenticate ```csharp - // This example is for an ASP.NET Core web api public void ReplyForbiddenWithWwwAuthenticateHeader(MsalUiRequiredException ex) { httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; httpResponse.Headers[HeaderNames.WWWAuthenticate] = $"Bearer claims={ex.Claims}, error={ex.Message}; } - ``` -#### The client +#### Handling the failure on the client -The client needs to interpret 401 messages and to parse WWW-Authenticate headers. MSAL.NET offers parsing APIs: +The client needs to interpret 401 messages and parse WWW-Authenticate headers. MSAL.NET offers parsing APIs: ```csharp // assuming an HttpResponseMessage response with StatusCode=HttpStatusCode.Unauthorized From 82bd872335748ab0edd06d0761b3a65a9878d249 Mon Sep 17 00:00:00 2001 From: Peter <34331512+pmaytak@users.noreply.github.com> Date: Wed, 23 Aug 2023 14:10:27 -0700 Subject: [PATCH 37/63] Apply suggestions from code review --- .../advanced/high-availability.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/msal-dotnet-articles/advanced/high-availability.md b/msal-dotnet-articles/advanced/high-availability.md index 070973333..9f75176c3 100644 --- a/msal-dotnet-articles/advanced/high-availability.md +++ b/msal-dotnet-articles/advanced/high-availability.md @@ -4,7 +4,7 @@ title: High availability considerations in MSAL.NET # High availability considerations in MSAL.NET -For client credential (app 2 app) flow, please see https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-credential-flows which has a topic on High-Availablity first. +For client credentials flow, see this [High Availability](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-credential-flows#high-availability) doc first. ## Use a higher level API @@ -58,10 +58,10 @@ Details about logging can be found in the [Logging in MSAL.NET](/azure/active-di ## One Confidential Client per session -It is recommended to use a new `ConfidentialClientApplication` on each session and to serialize in the same way - one token cache per session. This scales well and also increases security. The [official samples](/azure/active-directory/develop/sample-v2-code) show how to do this. But remember to configure token caching. +It is recommended to use a new `ConfidentialClientApplication` on each session and to serialize in the same way - one token cache per session. This scales well and also increases security. The [official samples](/azure/active-directory/develop/sample-v2-code) show how to do this. You must [configure token caching](https://aka.ms/msal-net-token-cache-serialization) for this to work properly. >[!NOTE] ->Microsoft.Identity.Web does this. +>Microsoft.Identity.Web applies this approach - one confidential client app instance per request with enabled token caching. ## HttpClient @@ -97,15 +97,15 @@ Whenever you make **requests for the same token**, i.e. whenever MSAL is able to ## Certificate Rotation -Certs for the confidential client app must be rotated for security reasons (don't use secrets in prod!). There are several ways to handle cert rotation, listing is in ordered of most preferred to least preferred. +Certificates for the confidential client app must be rotated for security reasons (don't use secrets in prod!). There are several ways to handle certificate rotation, in order of the most preferred to the least: -1. Use Managed Identity +1. Use managed identity -With [Managed Identity](https://learn.microsoft.com/entra/msal/dotnet/advanced/managed-identity), trust is established through hosting your app in Azure. There are not secrets to maintain and no certificates to rotate. +With [managed identity](https://learn.microsoft.com/entra/msal/dotnet/advanced/managed-identity), trust is established through hosting your app in Azure. There are not secrets to maintain and no certificates to rotate. 2. Use Microsoft.Identity.Web's certificate handling logic -In web app / web api scenarios, you should use Microsoft.Identity.Web, a higher-level API over MSAL. It handles certificate rotation for when the certificate is stored in KeyVault and handles Managed Identity for you as well. +In web apps and web APIs, use Microsoft.Identity.Web, a higher-level API over MSAL. It handles certificate rotation when the certificate is stored in Azure Key Vault and handles managed identity case as well. Learn more in the [Certificates in Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web/wiki/Certificates#getting-certificates-from-key-vault) guide. @@ -113,7 +113,7 @@ This is the preferred solution for non-Microsoft internal services using ASP.NET 3. (**Internal only**) Rely on [Subject Name/Issuer certificates](./subject-name-and-issuer-authentication.md). -This mechanism allows Azure AD to identify a cert based on SN/I instead of thumbprint (x5t). It is a stop-gap solution, there are no plans to make it available to third-parties. +This mechanism allows Azure AD to identify a certtificate based on SN/I instead of a thumbprint (x5t). It is a stop-gap solution; there are no plans to make it available to non-Microsoft applications. -This is the preferred solution for Microsoft internal services who are not able to use Managed Identity. +This is the preferred solution for Microsoft internal services which are not able to use managed identity. From d1a867910060ab11c605084f645c1aa739181f9b Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Thu, 24 Aug 2023 15:41:13 +0100 Subject: [PATCH 38/63] Update wam.md --- .../acquiring-tokens/desktop-mobile/wam.md | 24 +++++-------------- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 896f93b09..6b34b4139 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -8,35 +8,23 @@ description: "MSAL is able to call Web Account Manager (WAM), a Windows componen MSAL is able to call Web Account Manager (WAM), a Windows component that ships with the OS. This component acts as an authentication broker allowing the users of your app to benefit from integration with accounts known to Windows, such as the account you signed into your Windows session. >[!NOTE] ->WAM is only available on Windows 10 and above, as well as Windows Server 2019 and above. +>WAM is available on Windows 10 and above, as well as Windows Server 2019 and above. MSAL will automatically fallback to a browser if WAM cannot be used. ## What is a broker An authentication broker is an application that runs on a user’s machine that manages the authentication handshakes and token maintenance for connected accounts. The Windows operating system uses the Web Account Manager (WAM) as its authentication broker. It has many benefits for developers and customers alike, including: -- **Enhanced security.** The client application does not need to manage the refresh token which can be used to obtain new authentication tokens without user consent. +- **Enhanced security.** Many security enhancements will be delivered with the broker, wihtout needing to update the application logic. - **Feature support.** With the help of the broker developers can access rich OS and service capabilities such as Windows Hello, conditional access policies, and FIDO keys without writing extra scaffolding code. - **System integration.** Applications that use the broker plug-and-play with the built-in account picker, allowing the user to quickly pick an existing account instead of reentering the same credentials over and over. +- **Token Protection.** WAM ensures that the refersh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-token-protection) -With the help of a broker you need to write less code to handle token-related logic while also being able to use more advanced functionality, such as [Proof-of-Possession tokens](../../advanced/proof-of-possession-tokens.md). Moving forward, the MSAL team is continuing to invest in making sure that brokers are the de facto approach to authenticate inside applications. - -## Improved Windows broker experience - -Latest Windows releases include an updated WAM. The new broker is written in C++, is well-tested, and is significantly more performant and secure. One of the biggest consumers of the new broker experience is the Microsoft 365 suite of apps. +## Enabling WAM > [!IMPORTANT] -> With the introduction of the updated broker, we have also updated MSAL.NET to expose its capabilities under a simplified API. Starting with version 4.52.0, the new broker will be the default in MSAL.NET. - -The new WAM fixes a number of issues with the legacy implementation and provides other benefits, including: - -- New implementation is more stable, easier to add new features, and has less chance of regressions. -- Works in apps that are executed under the Administrator user context. -- Adds support for [Proof-of-Possession tokens](../../advanced/proof-of-possession-tokens.md). -- Decreases assembly size. - -## Enabling WAM +> Use MSAL.NET 4.52.0 or higher to get broker support. -Due to platform-specific and backwards compatibility requirements, WAM support is split across two packages: +WAM support is split across two packages: - [Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client/) (i.e., MSAL) - core library for token acquisition. - [Microsoft.Identity.Client.Broker](https://www.nuget.org/packages/Microsoft.Identity.Client.Broker/) - adds support for authentication with the broker. From 3a2ebd695d80bc53701ef3b10f28bfe000617578 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 24 Aug 2023 14:37:29 -0700 Subject: [PATCH 39/63] Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md Co-authored-by: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 6b34b4139..17ed07b4e 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -14,7 +14,7 @@ MSAL is able to call Web Account Manager (WAM), a Windows component that ships w An authentication broker is an application that runs on a user’s machine that manages the authentication handshakes and token maintenance for connected accounts. The Windows operating system uses the Web Account Manager (WAM) as its authentication broker. It has many benefits for developers and customers alike, including: -- **Enhanced security.** Many security enhancements will be delivered with the broker, wihtout needing to update the application logic. +- **Enhanced security.** Many security enhancements will be delivered with the broker, without needing to update the application logic. - **Feature support.** With the help of the broker developers can access rich OS and service capabilities such as Windows Hello, conditional access policies, and FIDO keys without writing extra scaffolding code. - **System integration.** Applications that use the broker plug-and-play with the built-in account picker, allowing the user to quickly pick an existing account instead of reentering the same credentials over and over. - **Token Protection.** WAM ensures that the refersh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-token-protection) From d01933a7f2eb052511d44bbddf9a0c5b35dc8c7e Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 24 Aug 2023 14:37:35 -0700 Subject: [PATCH 40/63] Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md Co-authored-by: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 17ed07b4e..9782a42c5 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -17,7 +17,7 @@ An authentication broker is an application that runs on a user’s machine that - **Enhanced security.** Many security enhancements will be delivered with the broker, without needing to update the application logic. - **Feature support.** With the help of the broker developers can access rich OS and service capabilities such as Windows Hello, conditional access policies, and FIDO keys without writing extra scaffolding code. - **System integration.** Applications that use the broker plug-and-play with the built-in account picker, allowing the user to quickly pick an existing account instead of reentering the same credentials over and over. -- **Token Protection.** WAM ensures that the refersh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-token-protection) +- **Token Protection.** WAM ensures that the refresh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-token-protection) ## Enabling WAM From 055b499c714a62b1979ab52b3aa3fe038c8c5191 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 24 Aug 2023 14:38:25 -0700 Subject: [PATCH 41/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index 9782a42c5..bd5522102 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -17,7 +17,7 @@ An authentication broker is an application that runs on a user’s machine that - **Enhanced security.** Many security enhancements will be delivered with the broker, without needing to update the application logic. - **Feature support.** With the help of the broker developers can access rich OS and service capabilities such as Windows Hello, conditional access policies, and FIDO keys without writing extra scaffolding code. - **System integration.** Applications that use the broker plug-and-play with the built-in account picker, allowing the user to quickly pick an existing account instead of reentering the same credentials over and over. -- **Token Protection.** WAM ensures that the refresh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-token-protection) +- **Token Protection.** WAM ensures that the refresh tokens are device bound and [enables apps](../../advanced/proof-of-possession-tokens.md) to acquire device bound access tokens. See [Token Protection](/azure/active-directory/conditional-access/concept-token-protection) ## Enabling WAM From b840e5848a952612b6dd1ec39044d0e1eb7a58a6 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 24 Aug 2023 15:38:41 -0700 Subject: [PATCH 42/63] Update high-availability.md --- msal-dotnet-articles/advanced/high-availability.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/msal-dotnet-articles/advanced/high-availability.md b/msal-dotnet-articles/advanced/high-availability.md index 9f75176c3..fc84b59ce 100644 --- a/msal-dotnet-articles/advanced/high-availability.md +++ b/msal-dotnet-articles/advanced/high-availability.md @@ -1,10 +1,11 @@ --- title: High availability considerations in MSAL.NET +description: "How to build highly available applications that use MSAL.NET." --- # High availability considerations in MSAL.NET -For client credentials flow, see this [High Availability](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-credential-flows#high-availability) doc first. +For client credentials flow, see this [High Availability](/entra/msal/dotnet/acquiring-tokens/web-apps-apis/client-credential-flows#high-availability) document first. ## Use a higher level API @@ -14,15 +15,16 @@ MSAL is a lower level API. If you are writing a new app, consider using the high Semantic versioning is followed to the letter. Use the latest MSAL to get the latest bug fixes. -You also want to check if you should use Microsoft Identity Web, a higher level library for web apps and web APIs, which does a lot of what is described below for your. See [Is MSAL right for me?](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Is-MSAL.NET-right-for-me%3F), which proposes a decision tree to choose the best solution depending on your platform and constraints. +You also want to check if you should use Microsoft Identity Web, a higher level library for web apps and web APIs, which does a lot of what is described below for your. See [Choosing a version of MSAL.NET](/entra/msal/dotnet/getting-started/choosing-msal-dotnet), which proposes a decision tree to choose the best solution depending on your platform and constraints. ## Use the token cache **Default behaviour:** MSAL caches the tokens in memory. Each `ConfidentialClientApplication` instance has its own internal token cache. In-memory cache can be lost, for example, if the object instance is disposed or the whole application is stopped. -**Recommendation:** All apps should persist their token caches. Web apps and Web APIs should use an L1 / L2 token cache where L2 is a distributed store like Redis to handle scale. Desktop apps should use [this token cache serialization strategy](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/token-cache-serialization#token-cache-for-a-public-client-application). +**Recommendation:** All apps should persist their token caches. Web apps and Web APIs should use an L1 / L2 token cache where L2 is a distributed store like Redis to handle scale. Desktop apps should use [a proper token cache serialization strategy](/azure/active-directory/develop/msal-net-token-cache-serialization?tabs=desktop). -> Note: if you use Microsoft.Identity.Web, you don't need to worry about the cache, as it implements the right cache behavior. If you don't use Microsoft.Identity.Web but are building a web app or web API, you'd want to consider an [hybrid approach](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Is-MSAL.NET-right-for-me%3F#use-hybrid-model-msalnet-and-microsoft-identity-web) +>[!NOTE] +>If you use Microsoft.Identity.Web, you don't need to worry about the cache as it implements the right cache behavior out-of-the-box. If you don't use Microsoft.Identity.Web but are building a web app or web API, you'd want to consider an [hybrid approach](/entra/msal/dotnet/getting-started/choosing-msal-dotnet#when-do-you-use-the-hybrid-model-msalnet-and-microsoft-identity-web) **Default behaviour:** MSAL maintains a secondary ADAL token cache for migration scenarios between ADAL and MSAL. ADAL cache operations are very slow. **Recommendation:** Disable ADAL cache if you are not interested in migrating from ADAL. This will make a **BIG** perf improvement - see perf measurements [here](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/pull/2309). @@ -31,7 +33,7 @@ Add `WithLegacyCacheCompatibility(false)` when constructing your app to disable ## Add monitoring around MSAL operations -MSAL exposes important metrics as part of [AuthenticationResult.AuthenticationResultMetadata](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/master/src/client/Microsoft.Identity.Client/AuthenticationResultMetadata.cs#L9) object: +MSAL exposes important metrics as part of [AuthenticationResult.AuthenticationResultMetadata](xref:Microsoft.Identity.Client.AuthenticationResult.AuthenticationResultMetadata*) object: | Metric | Meaning | When to trigger an alarm? | | :-------------: | :----------: | :-----------: | @@ -67,7 +69,7 @@ It is recommended to use a new `ConfidentialClientApplication` on each session a **Default behaviour**: MSAL-created `HttpClient` does not scale well for web sites/web API where we recommend to have a `ClientApplication` object for each user session. -**Recommendation**: Provide your own scalable HttpClientFactory. On .NET Core we recommend that you inject the [System.Net.Http.IHttpClientFactory](/aspnet/core/fundamentals/http-requests?view=aspnetcore-3.0). This is described in more detail in the [Providing your own HttpClient, supporting HTTP proxies, and customization of user agent headers](httpclient.md) guide and in the [.NET documentation](/dotnet/api/system.net.http.httpclient?view=net-7.0#net-framework--mono) +**Recommendation**: Provide your own scalable HttpClientFactory. On .NET Core we recommend that you inject the [System.Net.Http.IHttpClientFactory](/aspnet/core/fundamentals/http-requests?view=aspnetcore-3.0). This is described in more detail in the [Providing your own HttpClient, supporting HTTP proxies, and customization of user agent headers](httpclient.md) guide and in the [.NET documentation](/dotnet/api/system.net.http.httpclient#net-framework--mono) ## Proactive Token renewal From 8f34c79739548ffe1ffd69e0ed6d1f206913aafb Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 24 Aug 2023 16:07:57 -0700 Subject: [PATCH 43/63] Update high-availability.md --- msal-dotnet-articles/advanced/high-availability.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msal-dotnet-articles/advanced/high-availability.md b/msal-dotnet-articles/advanced/high-availability.md index fc84b59ce..deac04ebd 100644 --- a/msal-dotnet-articles/advanced/high-availability.md +++ b/msal-dotnet-articles/advanced/high-availability.md @@ -69,7 +69,7 @@ It is recommended to use a new `ConfidentialClientApplication` on each session a **Default behaviour**: MSAL-created `HttpClient` does not scale well for web sites/web API where we recommend to have a `ClientApplication` object for each user session. -**Recommendation**: Provide your own scalable HttpClientFactory. On .NET Core we recommend that you inject the [System.Net.Http.IHttpClientFactory](/aspnet/core/fundamentals/http-requests?view=aspnetcore-3.0). This is described in more detail in the [Providing your own HttpClient, supporting HTTP proxies, and customization of user agent headers](httpclient.md) guide and in the [.NET documentation](/dotnet/api/system.net.http.httpclient#net-framework--mono) +**Recommendation**: Provide your own scalable HttpClientFactory. On .NET Core we recommend that you inject the [System.Net.Http.IHttpClientFactory](/aspnet/core/fundamentals/http-requests). This is described in more detail in the [Providing your own HttpClient, supporting HTTP proxies, and customization of user agent headers](httpclient.md) guide and in the [.NET documentation](/dotnet/api/system.net.http.httpclient#net-framework--mono) ## Proactive Token renewal @@ -103,7 +103,7 @@ Certificates for the confidential client app must be rotated for security reason 1. Use managed identity -With [managed identity](https://learn.microsoft.com/entra/msal/dotnet/advanced/managed-identity), trust is established through hosting your app in Azure. There are not secrets to maintain and no certificates to rotate. +With [managed identity](/entra/msal/dotnet/advanced/managed-identity), trust is established through hosting your app in Azure. There are not secrets to maintain and no certificates to rotate. 2. Use Microsoft.Identity.Web's certificate handling logic From bb2fd4ec923520ac9407a45515d637fb21351516 Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Fri, 25 Aug 2023 16:05:15 +0300 Subject: [PATCH 44/63] consolidate-all-msal-dotnet-reference-docs --- msal-dotnet-articles/TOC.yml | 53 +- .../acquire-token-silently.md | 98 +++ .../acquiring-tokens/clear-token-cache.md | 51 ++ .../desktop-mobile/adfs-support.md | 66 ++ .../acquiring-tokens/desktop-mobile/adfs.md | 46 -- .../integrated-windows-authentication.md | 2 +- .../desktop-mobile/social-identities.md | 19 +- .../acquiring-tokens/desktop-mobile/uwp.md | 23 +- ...ser-gets-consent-for-multiple-resources.md | 55 ++ .../acquiring-tokens/using-web-browsers.md | 228 +++++++ .../confidential-client-assertions.md | 164 +++++ .../exceptions/msal-error-handling.md | 185 ++++++ .../advanced/exceptions/msal-logging.md | 129 ++++ msal-dotnet-articles/advanced/httpclient.md | 5 + .../initializing-client-applications.md | 167 +++++ ...iate-confidential-client-config-options.md | 88 +++ ...nstantiate-public-client-config-options.md | 114 ++++ .../how-to/differences-adal-msal-net.md | 247 ++++++++ .../how-to/migrate-android-broker.md | 140 +++++ .../how-to/migrate-confidential-client.md | 551 +++++++++++++++++ .../how-to/migrate-ios-broker.md | 263 ++++++++ .../how-to/migrate-public-client.md | 496 +++++++++++++++ .../how-to/msal-net-migration.md | 73 +++ .../how-to/token-cache-serialization.md | 570 ++++++++++++++++++ 24 files changed, 3771 insertions(+), 62 deletions(-) create mode 100644 msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md create mode 100644 msal-dotnet-articles/acquiring-tokens/clear-token-cache.md create mode 100644 msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md delete mode 100644 msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs.md create mode 100644 msal-dotnet-articles/acquiring-tokens/user-gets-consent-for-multiple-resources.md create mode 100644 msal-dotnet-articles/acquiring-tokens/using-web-browsers.md create mode 100644 msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md create mode 100644 msal-dotnet-articles/advanced/exceptions/msal-error-handling.md create mode 100644 msal-dotnet-articles/advanced/exceptions/msal-logging.md create mode 100644 msal-dotnet-articles/getting-started/initializing-client-applications.md create mode 100644 msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md create mode 100644 msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md create mode 100644 msal-dotnet-articles/how-to/differences-adal-msal-net.md create mode 100644 msal-dotnet-articles/how-to/migrate-android-broker.md create mode 100644 msal-dotnet-articles/how-to/migrate-confidential-client.md create mode 100644 msal-dotnet-articles/how-to/migrate-ios-broker.md create mode 100644 msal-dotnet-articles/how-to/migrate-public-client.md create mode 100644 msal-dotnet-articles/how-to/msal-net-migration.md create mode 100644 msal-dotnet-articles/how-to/token-cache-serialization.md diff --git a/msal-dotnet-articles/TOC.yml b/msal-dotnet-articles/TOC.yml index 46dcf5d30..a6cd5a368 100644 --- a/msal-dotnet-articles/TOC.yml +++ b/msal-dotnet-articles/TOC.yml @@ -9,14 +9,18 @@ items: - name: Scenarios href: getting-started/scenarios.md + - name: Initializing client applications + href: getting-started/initializing-client-applications.md + - name: Instantiate public client apps + href: getting-started/instantiate-public-client-config-options.md + - name: Instantiate confidential client apps + href: getting-started/instantiate-confidential-client-config-options.md - name: Best practices href: getting-started/best-practices.md - name: Acquiring Tokens items: - name: Overview href: acquiring-tokens/overview.md - - name: AcquireTokenSilentAsync API - href: acquiring-tokens/acquiretokensilentasync-api.md - name: Desktop and mobile applications items: - name: Acquiring tokens interactively @@ -31,22 +35,34 @@ href: acquiring-tokens/desktop-mobile/uwp.md - name: Sign-in users with social identities href: acquiring-tokens/desktop-mobile/social-identities.md - - name: Integrated Windows Authentication for domain or AAD joined machines + - name: Integrated Windows Authentication for domain or Azure AD joined machines href: acquiring-tokens/desktop-mobile/integrated-windows-authentication.md - name: Username/password authentication href: acquiring-tokens/desktop-mobile/username-password-authentication.md - name: Device Code Flow for devices without a Web browser href: acquiring-tokens/desktop-mobile/device-code-flow.md - name: ADFS support - href: acquiring-tokens/desktop-mobile/adfs.md + href: acquiring-tokens/desktop-mobile/adfs-support.md - name: Web apps/web APIs/daemon apps items: - name: Acquiring a token for the app href: acquiring-tokens/web-apps-apis/client-credential-flows.md - name: Acquiring a token on behalf of a user (service to service calls) href: acquiring-tokens/web-apps-apis/on-behalf-of-flow.md - - name: Acquiring a token by authorization code in Web Apps + - name: Acquiring a token by authorization code in web apps href: acquiring-tokens/web-apps-apis/authorization-codes.md + - name: Confidential client assertions + href: acquiring-tokens/web-apps-apis/confidential-client-assertions.md + - name: AcquireTokenSilentAsync API + href: acquiring-tokens/acquiretokensilentasync-api.md + - name: Acquire a token from the cache + href: acquiring-tokens/acquire-token-silently.md + - name: Clear the token cache + href: acquiring-tokens/clear-token-cache.md + - name: Get consent for several resources + href: acquiring-tokens/user-gets-consent-for-multiple-resources.md + - name: Using web browsers for interactive authentication + href: acquiring-tokens/using-web-browsers.md - name: Advanced topics items: - name: High availability @@ -55,6 +71,10 @@ items: - name: Overview href: advanced/exceptions/index.md + - name: Handle errors and exceptions in MSAL.NET + href: advanced/exceptions/msal-error-handling.md + - name: Retry policy + href: advanced/exceptions/msal-logging.md - name: Retry policy href: advanced/exceptions/retry-policy.md - name: Understanding MsalUiRequiredException @@ -115,6 +135,20 @@ href: advanced/subject-name-and-issuer-authentication.md - name: How-to items: + - name: Migrate to MSAL.NET + items: + - name: Migrate from ADAL.NET to MSAL.NET + href: how-to/msal-net-migration.md + - name: Migrate confidential client apps to MSAL.NET + href: how-to/migrate-confidential-client.md + - name: Migrate public client apps to MSAL.NET + href: how-to/migrate-public-client.md + - name: Differences between ADAL.NET and MSAL.NET + href: how-to/differences-adal-msal-net.md + - name: Migrate broker-enabled Xamarin Android app MSAL.NET + href: migrate-android-broker.md + - name: Migrate broker-enabled Xamarin iOS app MSAL.NET + href: migrate-ios-broker.md - name: Install NuGet package from other sources href: how-to/install-nuget-custom-source.md - name: Synchronous programming @@ -123,20 +157,23 @@ href: how-to/override-target-framework.md - name: Setting the default reply URI href: how-to/default-reply-uri.md - - name: Protect resources in iOS and Android applications using InTune MAM and MSAL.NET + - name: Protect resources in iOS and Android apps using InTune MAM and MSAL.NET href: how-to/protect-ios-android-mam-intune.md + - name: Setting cache options + href: how-to/cache-options.md - name: Custom token cache for a public client application href: how-to/custom-token-cache-in-public-client-applications.md + - name: Serialize the token cache + href: how-to/token-cache-serialization.md - name: Building applications on Ubuntu Linux href: how-to/build-apps-on-linux-ubuntu.md - name: Overriding authority href: how-to/overriding-authority.md - name: Creating a configuration for MAM (conditional access) href: how-to/create-config-for-mam-conditional-access.md - - name: Setting cache options - href: how-to/cache-options.md - name: Getting tenant profiles href: how-to/get-tenant-profiles.md + - name: Contribute items: - name: Overview diff --git a/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md new file mode 100644 index 000000000..3c1696950 --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md @@ -0,0 +1,98 @@ +--- +title: Acquire a token from the cache (MSAL.NET) +description: Learn how to acquire an access token silently (from the token cache) using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, engagement-fy23, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how how to use the AcquireTokenSilent method so I can acquire tokens from the cache. +--- + +# Get a token from the token cache using MSAL.NET + +When you acquire an access token using the Microsoft Authentication Library for .NET (MSAL.NET), the token is cached. When the application needs a token, it should first attempt to fetch it from the cache. + +You can monitor the source of the tokens by inspecting the [`AuthenticationResult.AuthenticationResultMetadata.TokenSource`](/dotnet/api/microsoft.identity.client.authenticationresultmetadata.tokensource?view=msal-dotnet-latest&preserve-view=true) property. + +## Websites and web APIs + +ASP.NET Core and ASP.NET Classic websites should integrate with [Microsoft.Identity.Web](microsoft-identity-web.md), a wrapper for MSAL.NET. Memory token caching or distributed token caching can be configured as described in [token cache serialization](msal-net-token-cache-serialization.md?tabs=aspnetcore). + +Web APIs on ASP.NET Core should use Microsoft.Identity.Web. Web APIs on ASP.NET classic, use MSAL directly, by calling `AcquireTokenOnBehalfOf` and should configure memory or distributed caching. For more information, see [Token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md?tabs=aspnet). There's no reason to call the `AcquireTokenSilent` API as there's no API to clear the cache. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis etc. + +## Web service / Daemon apps + +Applications that request tokens for an app identity, with no user involved, by calling `AcquireTokenForClient` can either rely on MSAL's internal caching, define their own memory token caching or distributed token caching. For instructions and more information, see [Token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md?tabs=aspnet). + +Since no user is involved, there's no reason to call `AcquireTokenSilent`. `AcquireTokenForClient` will look in the cache on its own as there's no API to clear the cache. Cache size is proportional with the number of tenants and resources you need tokens for. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis, etc. + +## Desktop, command-line, and mobile applications + +Desktop, command-line, and mobile applications should first call the `AcquireTokenSilent` method to verify if an acceptable token is in the cache. In many cases, it's possible to acquire another token with more scopes based on a token in the cache. It's also possible to refresh a token when it's getting close to expiration (as the token cache also contains a refresh token). + +For authentication flows that require a user interaction, MSAL caches the access, refresh, and ID tokens, and the `IAccount` object, which represents information about a single account. Learn more about [IAccount](/dotnet/api/microsoft.identity.client.iaccount?view=msal-dotnet-latest&preserve-view=true). For application flows, such as [client credentials](msal-authentication-flows.md#client-credentials), only access tokens are cached, because the `IAccount` object and ID token require a user, and the refresh token isn't applicable. + +The recommended pattern is to call the `AcquireTokenSilent` method first. If `AcquireTokenSilent` fails, then acquire a token using other methods. + +In the following example, the application first attempts to acquire a token from the token cache. If a `MsalUiRequiredException` exception is thrown, the application acquires a token interactively. + +```csharp +var accounts = await app.GetAccountsAsync(); + +AuthenticationResult result = null; +try +{ + result = await app.AcquireTokenSilent(scopes, accounts.FirstOrDefault()) + .ExecuteAsync(); +} +catch (MsalUiRequiredException ex) +{ + // A MsalUiRequiredException happened on AcquireTokenSilent. + // This indicates you need to call AcquireTokenInteractive to acquire a token + Debug.WriteLine($"MsalUiRequiredException: {ex.Message}"); + + try + { + result = await app.AcquireTokenInteractive(scopes) + .ExecuteAsync(); + } + catch (MsalException msalex) + { + ResultText.Text = $"Error Acquiring Token:{System.Environment.NewLine}{msalex}"; + } +} +catch (Exception ex) +{ + ResultText.Text = $"Error Acquiring Token Silently:{System.Environment.NewLine}{ex}"; + return; +} + +if (result != null) +{ + string accessToken = result.AccessToken; + // Use the token +} +``` + +### Clearing the cache + +In public client applications, removing accounts from the cache will clear it. However, this doesn't remove the session cookie, which is in the browser. + +```csharp +var accounts = (await app.GetAccountsAsync()).ToList(); + +// clear the cache +while (accounts.Any()) +{ + await app.RemoveAsync(accounts.First()); + accounts = (await app.GetAccountsAsync()).ToList(); +} +``` diff --git a/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md new file mode 100644 index 000000000..30c2d613d --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md @@ -0,0 +1,51 @@ +--- +title: Clear the token cache (MSAL.NET) +description: Learn how to clear the token cache using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how how to clear the token cache so I can . +--- + +# Clear the token cache using MSAL.NET + +## Web API and daemon apps + +There is no API to remove the tokens from the cache. Cache size should be handled by setting eviction policies on the underlying storage. See [Cache Serialization](msal-net-token-cache-serialization.md?tabs=aspnetcore) for details on how to use a memory cache or distributed cache. + +## Desktop, command line and mobile applications + +When you [acquire an access token](msal-acquire-cache-tokens.md) using the Microsoft Authentication Library for .NET (MSAL.NET), the token is cached. When the application needs a token, it should first call the `AcquireTokenSilent` method to verify if an acceptable token is in the cache. + +Clearing the cache is achieved by removing the accounts from the cache. This does not remove the session cookie which is in the browser, though. The following example instantiates a public client application, gets the accounts for the application, and removes the accounts. + +```csharp +private readonly IPublicClientApplication _app; +private static readonly string ClientId = ConfigurationManager.AppSettings["ida:ClientId"]; +private static readonly string Authority = string.Format(CultureInfo.InvariantCulture, AadInstance, Tenant); + +_app = PublicClientApplicationBuilder.Create(ClientId) + .WithAuthority(Authority) + .Build(); + +var accounts = (await _app.GetAccountsAsync()).ToList(); + +// clear the cache +while (accounts.Any()) +{ + await _app.RemoveAsync(accounts.First()); + accounts = (await _app.GetAccountsAsync()).ToList(); +} + +``` + +To learn more about acquiring and caching tokens, read [acquire an access token](msal-acquire-cache-tokens.md). diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md new file mode 100644 index 000000000..342c6db66 --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md @@ -0,0 +1,66 @@ +--- +title: ADFS support in MSAL.NET +description: Learn about Active Directory Federation Services (ADFS) support in the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about AD FS support in MSAL.NET so I can decide if this platform meets my application development needs and requirements. +--- + +# Active Directory Federation Services support in MSAL.NET + +Active Directory Federation Services (AD FS) in Windows Server enables you to add OpenID Connect and OAuth 2.0 based authentication and authorization to applications you are developing. Those applications can, then, authenticate users directly against AD FS. For more information, read [AD FS Scenarios for Developers](/windows-server/identity/ad-fs/overview/ad-fs-openid-connect-oauth-flows-scenarios). + +Microsoft Authentication Library for .NET (MSAL.NET) supports two scenarios for authenticating against AD FS: + +- MSAL.NET talks to Azure Active Directory, which itself is *federated* with AD FS. +- MSAL.NET talks **directly** to an ADFS authority. This is only supported from AD FS 2019 and above. One of the scenarios this highlights is [Azure Stack](https://azure.microsoft.com/overview/azure-stack/) support + +## Cases where identity providers are federated with Azure AD + +MSAL.NET supports talking to Azure AD, which itself signs-in managed users (users managed in Azure AD), or federated users (users managed by another identity provider, which, in the case we are interested is federated through ADFS). MSAL.NET does not know about the fact that users are federated. As far as it’s concerned, it talks to Azure AD. + +The [authority](/azure/active-directory/develop/msal-client-applications) you'll use in the case is the usual authority (common, organizations, or tenanted). + +### Acquiring a token interactively + +When you call the the `AcquireTokenInteractive`,the user experience is typically: + +- The user enter their upn (or the account or `loginHint` is provided part of the call to ) +- Azure AD displays briefly "Taking you to your organization's page" +- Azure AD then redirects the user to the sign-in page of the identity provider (usually customized with the logo of the organization) + +Supported ADFS versions in this federated scenario are ADFS v2 , ADFS v3 (Windows Server 2012 R2) and ADFS v4 (ADFS 2016) + +### Acquiring a token using `AcquireTokenByIntegratedAuthentication` or `AcquireTokenByUsernamePassword` + +When acquiring a token using the `AcquireTokenByIntegratedAuthentication` or `AcquireTokenByUsernamePassword` methods, MSAL.NET gets the identity provider to contact based on the username. MSAL.NET receives a [SAML 1.1 token](/azure/active-directory/develop/reference-saml-tokens) after contacting the identity provider. MSAL.NET then provides the SAML token to Azure AD as a user assertion (similar to the [on-behalf-of flow](../web-apps-apis/on-behalf-of-flow.md) to get back a JWT. + +## Case where MSAL connects directly to ADFS + +MSAL.NET supports connecting to AD FS 2019, which is Open ID Connect compliant and understands PKCE and scopes. This support requires that a service pack [KB 4490481](https://support.microsoft.com/help/4490481/windows-10-update-kb4490481) is applied to Windows Server. When connecting directly to AD FS, the authority you'll want to use to build your application is similar to `https://mysite.contoso.com/adfs/`. + +Currently, there are no plans to support a direct connection to: + +- AD FS 16, as it doesn't support PKCE and still uses resources, not scope +- AD FS v2, which is not OIDC-compliant. + + If you need to support scenarios requiring a direct connection to AD FS 2016, use the latest version of [Azure Active Directory Authentication Library](../azuread-dev/active-directory-authentication-libraries.md#microsoft-supported-client-libraries). When you have upgraded your on-premises system to AD FS 2019, you'll be able to use MSAL.NET. + +However for MSAL.NET we have no plans to support a direct connection to ADFS 2016 (it does not support PKCE and still uses resources, not scope). When you have upgraded your on-premise system to ADFS 2019, you'll be able to use MSAL.NET. + +MSAL does not support Integrated Windows Authentication (by calling `AcquireTokenByIntegratedWindowsAuth`) directly to ADFS. + +## See also + +- [Troubleshooting IWA/ADFS Setup](/windows-server/identity/ad-fs/troubleshooting/ad-fs-tshoot-iwa) +- For the federated case, see [Configure Azure Active Directory sign in behavior for an application by using a Home Realm Discovery policy](/azure/active-directory/manage-apps/configure-authentication-for-federated-users-portal) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs.md deleted file mode 100644 index b2d8fa84f..000000000 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: ADFS Support in MSAL.NET -description: "Support of Azure Directory Federation Services with the MSAL.NET library." ---- - -# ADFS Support in MSAL.NET - -There are two cases: - -- MSAL.NET talks to Azure Active Directory, which itself is **federated** with other identity providers (IdPs). In the case we are interested in the federation happens through ADFS. -- MSAL.NET talks **directly** to an ADFS authority. This is only supported from AD FS 2019 and above. One of the scenarios this highlights is [Azure Stack](https://azure.microsoft.com/overview/azure-stack/) support. - -## Cases where identity providers are federated with Azure AD - -MSAL.NET supports talking to Azure AD, which itself signs-in managed users (users managed in Azure AD), or federated users (users managed by another identity provider, which, in the case we are interested is federated through ADFS). MSAL.NET does not know about the fact that users are federated. As far as it’s concerned, it talks to Azure AD. - -The [authority](/azure/active-directory/develop/msal-client-applications) you'll use in the case is the usual authority (common, organizations, or tenanted) - -### Acquiring a token interactively - -When you call , in term of user experience: - -- the user enter their upn (or the account or `loginHint` is provided part of the call to ) -- Azure AD displays briefly "Taking you to your organization's page" -- and then redirects the user is to the sign-in page of the identity provider (usually customized with the logo of the organization) - -Supported ADFS versions in this federated scenario are ADFS v2 , ADFS v3 (Windows Server 2012 R2) and ADFS v4 (ADFS 2016) - -### Acquiring a token using `AcquireTokenByIntegratedAuthentication` or `AcquireTokenByUsernamePassword` - -In that case, from the username, MSAL.NET goes to Azure Active Directory (`userrealm` endpoint) passing the username, and it gets information about the IdP to contact. It does, passing the username (and the password in the case of ) and receives a [SAML 1.1 token](/azure/active-directory/develop/reference-saml-tokens), which it provides to Azure Active Directory as a user assertion (similar to the [on-behalf-of](../web-apps-apis/on-behalf-of-flow.md) flow) to get back a JWT. - -## Case where MSAL connects directly to ADFS - -In that case the authority you'll want to use to build your application is something like `https://somesite.contoso.com/adfs/` - -MSAL.NET supports ADFS 2019 (PR is [ADFS Compatibility with MSAL #834](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/pull/834)), which understands PKCE and scopes, after a service pack [KB 4490481](https://support.microsoft.com/help/4490481/windows-10-update-kb4490481) is applied to Windows Server. - -However for MSAL.NET we have no plans to support a direct connection to ADFS 2016 (it does not support PKCE and still uses resources, not scope). If you need to support today scenarios requiring a direct connection to ADFS 2016, please use the latest version of ADAL. When you have upgraded your on-premise system to ADFS 2019, you'll be able to use MSAL.NET. - -MSAL does not support Integrated Windows Authentication (by calling `AcquireTokenByIntegratedWindowsAuth`) directly to ADFS. - -## See also - -- [Troubleshooting IWA/ADFS Setup](/windows-server/identity/ad-fs/troubleshooting/ad-fs-tshoot-iwa) -- For the federated case, see [Configure Azure Active Directory sign in behavior for an application by using a Home Realm Discovery policy](/azure/active-directory/manage-apps/configure-authentication-for-federated-users-portal) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md index b3cc9e121..40e35564e 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md @@ -1,6 +1,6 @@ --- title: Using MSAL.NET with Integrated Windows Authentication (IWA) -description: "If your desktop or mobile application runs on Windows and on a machine connected to a Windows domain (AD or AAD joined) it is possible to use the Integrated Windows Authentication (IWA) to acquire a token silently. No UI is required when using the application." +description: "If your desktop or mobile application runs on Windows and on a machine connected to a Windows domain (AD or Azure AD joined) it is possible to use the Integrated Windows Authentication (IWA) to acquire a token silently. No UI is required when using the application." --- # Using MSAL.NET with Integrated Windows Authentication (IWA) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/social-identities.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/social-identities.md index 67a203f83..da97097d8 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/social-identities.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/social-identities.md @@ -1,23 +1,36 @@ --- title: Using MSAL.NET to sign-in users with social identities description: "You can use MSAL.NET to sign-in users with social identities by using Azure AD B2C. Azure AD B2C is built around the notion of policies. In MSAL.NET, specifying a policy translates to providing an authority." +services: active-directory +author: henrymbuguakiarie +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky, saeeda, jeferrie +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +# Customer intent: As an application developer, I want to learn about specific considerations when using Azure AD B2C and MSAL.NET so I can decide if this platform meets my application development needs and requirements. --- # Using MSAL.NET to sign-in users with social identities You can use MSAL.NET to sign-in users with social identities by using [Azure AD B2C](/azure/active-directory-b2c/overview). Azure AD B2C is built around the notion of policies. In MSAL.NET, specifying a policy translates to providing an authority. -- When you instantiate the Public client application, you need to specify the policy in authority +- When you instantiate the public client application, you need to specify the policy in authority - When you want to apply a policy, you need to call an override of `AcquireTokenInteractive` containing an `authority` parameter -## Authority for a B2C tenant and policy +## Authority for an Azure AD B2C tenant and policy The authority to use is `https://login.microsoftonline.com/tfp/{tenant}/{policyName}` where: - `tenant` is the name of the Azure AD B2C tenant, - `policyName` the name of the policy to apply (for instance "b2c_1_susi" for sign-in/sign-up). -The current guidance from B2C is to use `b2clogin.com` as the authority. For example, `$"https://{your-tenant-name}.b2clogin.com/tfp/{your-tenant-ID}/{policyname}"`. For more information, see this [documentation](/azure/active-directory-b2c/b2clogin). +The current guidance from B2C is to use `b2clogin.com` as the authority. For example, `$"https://{your-tenant-name}.b2clogin.com/tfp/{your-tenant-ID}/{policyname}"`. For more information, see [Set redirect URLs to b2clogin.com.](/azure/active-directory-b2c/b2clogin). ```csharp // Azure AD B2C Coordinates diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md index 18a51e642..d04a5ad4f 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md @@ -1,10 +1,25 @@ --- -title: Using MSAL.NET with UWP applications -description: "How to build MSAL.NET applications on the Universal Windows Platform." ---- +title: Using MSAL.NET with UWP applications +description: Learn how to build MSAL.NET applications on the Universal Windows Platform." +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about considerations for using Universal Windows Platform and MSAL.NET so that I can decide if this platform meets my application development needs. +------ # Using MSAL.NET with UWP applications +Developers of applications that use Universal Windows Platform (UWP) with MSAL.NET should consider the concepts this article presents. + >[!NOTE] >Please see [WAM](./wam.md) for how to configure your UWP app to handle authentication through the Windows Broker. @@ -12,7 +27,7 @@ description: "How to build MSAL.NET applications on the Universal Windows Platfo ### UseCorporateNetwork -On UWP, has the following property `UseCorporateNetwork`. This is a boolean which enables the UWP application to benefit from Integrated Windows Authentication (and therefore SSO with the user signed-in with the operating system) if this user is signed-in with an account in a federated Azure AD tenant. +On the Windows Runtime (WinRT) platform, has the boolean property `UseCorporateNetwork`. This property enables Windows 10 and UWP applications to benefit from Integrated Windows Authentication (and therefore SSO with the user signed-in with the operating system) if this user is signed-in with an account in a federated Azure AD tenant. **Important:** Setting this property to true assumes that the application developer has enabled Integrated Windows Authentication (IWA) in the application. For this: diff --git a/msal-dotnet-articles/acquiring-tokens/user-gets-consent-for-multiple-resources.md b/msal-dotnet-articles/acquiring-tokens/user-gets-consent-for-multiple-resources.md new file mode 100644 index 000000000..22c8c9818 --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/user-gets-consent-for-multiple-resources.md @@ -0,0 +1,55 @@ +--- +title: Get consent for several resources (MSAL.NET) +description: Learn how a user can get pre-consent for several resources using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky, jmprieur +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how to specify additional scopes so I can get pre-consent for several resources. +--- + +# User gets consent for several resources using MSAL.NET +The Microsoft identity platform does not allow you to get a token for several resources at once. When using the Microsoft Authentication Library for .NET (MSAL.NET), the scopes parameter in the acquire token method should only contain scopes for a single resource. However, you can pre-consent to several resources upfront by specifying additional scopes using the `.WithExtraScopeToConsent` builder method. + +> [!NOTE] +> Getting consent for several resources works for Microsoft identity platform, but not for Azure AD B2C. Azure AD B2C supports only admin consent, not user consent. + +For example, if you have two resources that have 2 scopes each: + +- https:\//mytenant.onmicrosoft.com/customerapi (with 2 scopes `customer.read` and `customer.write`) +- https:\//mytenant.onmicrosoft.com/vendorapi (with 2 scopes `vendor.read` and `vendor.write`) + +You should use the `.WithExtraScopeToConsent` modifier which has the *extraScopesToConsent* parameter as shown in the following example: + +```csharp +string[] scopesForCustomerApi = new string[] +{ + "https://mytenant.onmicrosoft.com/customerapi/customer.read", + "https://mytenant.onmicrosoft.com/customerapi/customer.write" +}; +string[] scopesForVendorApi = new string[] +{ + "https://mytenant.onmicrosoft.com/vendorapi/vendor.read", + "https://mytenant.onmicrosoft.com/vendorapi/vendor.write" +}; + +var accounts = await app.GetAccountsAsync(); +var result = await app.AcquireTokenInteractive(scopesForCustomerApi) + .WithAccount(accounts.FirstOrDefault()) + .WithExtraScopeToConsent(scopesForVendorApi) + .ExecuteAsync(); +``` + +This will get you an access token for the first web API. Then, to access the second web API you can silently acquire the token from the token cache: + +```csharp +AcquireTokenSilent(scopesForVendorApi, accounts.FirstOrDefault()).ExecuteAsync(); +``` diff --git a/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md b/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md new file mode 100644 index 000000000..69a8446e8 --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md @@ -0,0 +1,228 @@ +--- +title: Using web browsers (MSAL.NET) +description: Learn about specific considerations when using Xamarin Android with the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, has-adal-ref, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about web browsers MSAL.NET so I can decide if this platform meets my application development needs and requirements. +--- + +# Using web browsers (MSAL.NET) + +Web browsers are required for interactive authentication. By default, MSAL.NET supports the [system web browser](#system-web-browser-on-xamarinios-xamarinandroid) on Xamarin.iOS and Xamarin.Android. But [you can also enable the Embedded Web browser](#enable-embedded-webviews-on-ios-and-android) depending on your requirements (UX, need for single sign-on (SSO), security) in [Xamarin.iOS](#choosing-between-embedded-web-browser-or-system-browser-on-xamarinios) and [Xamarin.Android](#detecting-the-presence-of-custom-tabs-on-xamarinandroid) apps. And you can even [choose dynamically](#detecting-the-presence-of-custom-tabs-on-xamarinandroid) which web browser to use based on the presence of Chrome or a browser supporting Chrome custom tabs in Android. MSAL.NET only supports the system browser in .NET Core desktop applications. + +## Web browsers in MSAL.NET + +### Interaction happens in a Web browser + +It's important to understand that when acquiring a token interactively, the content of the dialog box isn't provided by the library but by the STS (Security Token Service). The authentication endpoint sends back some HTML and JavaScript that controls the interaction, which is rendered in a web browser or web control. Allowing the STS to handle the HTML interaction has many advantages: + +- The password (if one was typed) is never stored by the application, nor the authentication library. +- Enables redirections to other identity providers (for instance login-in with a work school account or a personal account with MSAL, or with a social account with Azure AD B2C). +- Lets the STS control Conditional Access, for example, by having the user do [multi-factor authentication (MFA)](../authentication/concept-mfa-howitworks.md) during the authentication phase (entering a Windows Hello pin, or being called on their phone, or on an authentication app on their phone). In cases where the required multi-factor authentication isn't set it up yet, the user can set it up just in time in the same dialog. The user enters their mobile phone number and is guided to install an authentication application and scan a QR tag to add their account. This server driven interaction is a great experience! +- Lets the user change their password in this same dialog when the password has expired (providing additional fields for the old password and the new password). +- Enables branding of the tenant, or the application (images) controlled by the Azure AD tenant admin / application owner. +- Enables the users to consent to let the application access resources / scopes in their name just after the authentication. + +### Embedded vs System Web UI + +MSAL.NET is a multi-framework library and has framework-specific code to host a browser in a UI control (for example, on .NET Classic it uses WinForms, on .NET 5.0+ it uses WebView2, on Xamarin it uses native mobile controls etc.). This control is called `embedded` web UI. Alternatively, MSAL.NET is also able to kick off the system OS browser. + +Generally, it's recommended that you use the platform default, and this is typically the system browser. The system browser is better at remembering the users that have logged in before. To change this behavior, use `WithUseEmbeddedWebView(bool)` + +### At a glance + +| Framework | Embedded | System | Default | +| ------------- |-------------| -----| ----- | +| .NET 5.0+ | Yes† | Yes^ | Embedded | +| .NET Classic | Yes | Yes^ | Embedded | +| .NET Core | No | Yes^ | System | +| .NET Standard | No | Yes^ | System | +| UWP | Yes | No | Embedded | +| Xamarin.Android | Yes | Yes | System | +| Xamarin.iOS | Yes | Yes | System | +| Xamarin.Mac| Yes | No | Embedded | + +**†** Requires OS-specific target framework moniker (TFM) of at least [`net5.0-windows10.0.17763.0`](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/efc71473d668fdd42c21cef6a6cadc69e1907290/src/client/Microsoft.Identity.Client/Platforms/netcore/NetCoreWebUIFactory.cs#L28). Do _not_ use the `net5.0` or `net5.0-windows` TFMs. For more information about TFMs, see [Target frameworks in SDK-style projects](/dotnet/standard/frameworks). + +**^** Requires redirect URI _http://localhost_ + +## System web browser on Xamarin.iOS, Xamarin.Android + +By default, MSAL.NET supports the system web browser on Xamarin.iOS, Xamarin.Android, and .NET Core. For all the platforms that provide UI (that is, not .NET Core), a dialog is provided by the library embedding a Web browser control. MSAL.NET also uses an embedded web view for the .NET Desktop and WAB for the UWP platform. However, it leverages by default the **system web browser** for Xamarin iOS and Xamarin Android applications. On iOS, it even chooses the web view to use depending on the version of the Operating System (iOS12, iOS11, and earlier). + +Using the system browser has the significant advantage of sharing the SSO state with other applications and with web applications without needing a broker (Company portal / Authenticator). The system browser was used, by default, in MSAL.NET for the Xamarin iOS and Xamarin Android platforms because, on these platforms, the system web browser occupies the whole screen, and the user experience is better. The system web view isn't distinguishable from a dialog. On iOS, though, the user might have to give consent for the browser to call back the application, which can be annoying. + +## System browser experience on .NET + +On .NET Core, MSAL.NET will start the system browser as a separate process. MSAL.NET doesn't have control over this browser, but once the user finishes authentication, the web page is redirected in such a way that MSAL.NET can intercept the URI. + +You can also configure apps written for .NET Classic or .NET 5 to use this browser by specifying: + +```csharp +await pca.AcquireTokenInteractive(s_scopes) + .WithUseEmbeddedWebView(false) +``` + +MSAL.NET cannot detect if the user navigates away or simply closes the browser. Apps using this technique are encouraged to define a timeout (via `CancellationToken`). We recommend a timeout of at least a few minutes, to take into account cases where the user is prompted to change password or perform multi-factor-authentication. + +### How to use the Default OS Browser + +MSAL.NET needs to listen on `http://localhost:port` and intercept the code that AAD sends when the user is done authenticating (See [Authorization code](v2-oauth2-auth-code-flow.md) for details) + +To enable the system browser: + +1. During app registration, configure `http://localhost` as a redirect URI (not currently supported by B2C) +2. When you construct your PublicClientApplication, specify this redirect URI: + +```csharp +IPublicClientApplication pca = PublicClientApplicationBuilder + .Create("") + // or use a known port if you wish "http://localhost:1234" + .WithRedirectUri("http://localhost") + .Build(); +``` + +> [!Note] +> If you configure `http://localhost`, internally MSAL.NET will find a random open port and use it. + +### Linux and macOS + +On Linux, MSAL.NET opens the default OS browser with a tool like [xdg-open](http://manpages.ubuntu.com/manpages/focal/man1/xdg-open.1.html). Opening the browser with `sudo` is unsupported by MSAL and will cause MSAL to throw an exception. + +On macOS, the browser is opened by invoking `open `. + +### Customizing the experience + +MSAL.NET can respond with an HTTP message or HTTP redirect when a token is received or an error occurs. + +```csharp +var options = new SystemWebViewOptions() +{ + HtmlMessageError = "

An error occurred: {0}. Details {1}

", + BrowserRedirectSuccess = new Uri("https://www.microsoft.com"); +} + +await pca.AcquireTokenInteractive(s_scopes) + .WithUseEmbeddedWebView(false) + .WithSystemWebViewOptions(options) + .ExecuteAsync(); +``` + +### Opening a specific browser (Experimental) + +You may customize the way MSAL.NET opens the browser. For example instead of using whatever browser is the default, you can force open a specific browser: + +```csharp +var options = new SystemWebViewOptions() +{ + OpenBrowserAsync = SystemWebViewOptions.OpenWithEdgeBrowserAsync +} +``` + +### UWP doesn't use the System Webview + +For desktop applications, however, launching a System Webview leads to a subpar user experience, as the user sees the browser, where they might already have other tabs opened. And when authentication has happened, the users gets a page asking them to close this window. If the user doesn't pay attention, they can close the entire process (including other tabs, which are unrelated to the authentication). Leveraging the system browser on desktop would also require opening local ports and listening on them, which might require advanced permissions for the application. You, as a developer, user, or administrator, might be reluctant about this requirement. + +## Enable embedded webviews on iOS and Android + +You can also enable embedded webviews in Xamarin.iOS and Xamarin.Android apps. Starting with MSAL.NET 2.0.0-preview, MSAL.NET also supports using the **embedded** webview option. + +As a developer using MSAL.NET targeting Xamarin, you may choose to use either embedded webviews or system browsers. This is your choice depending on the user experience and security concerns you want to target. + +Currently, MSAL.NET doesn't yet support the Android and iOS brokers. Therefore to provide single sign-on (SSO), the system browser might still be a better option. Supporting brokers with the embedded web browser is on the MSAL.NET backlog. + +### Differences between embedded webview and system browser +There are some visual differences between embedded webview and system browser in MSAL.NET. + +**Interactive sign-in with MSAL.NET using the Embedded Webview:** + +![embedded](media/msal-net-web-browsers/embedded-webview.png) + +**Interactive sign-in with MSAL.NET using the System Browser:** + +![System browser](media/msal-net-web-browsers/system-browser.png) + +### Developer Options + +As a developer using MSAL.NET, you have several options for displaying the interactive dialog from STS: + +- **System browser.** The system browser is set by default in the library. If using Android, read [system browsers](msal-net-system-browser-android-considerations.md) for specific information about which browsers are supported for authentication. When using the system browser in Android, we recommend the device has a browser that supports Chrome custom tabs. Otherwise, authentication may fail. +- **Embedded webview.** To use only embedded webview in MSAL.NET, the `AcquireTokenInteractively` parameters builder contains a `WithUseEmbeddedWebView()` method. + + iOS + + ```csharp + AuthenticationResult authResult; + authResult = app.AcquireTokenInteractively(scopes) + .WithUseEmbeddedWebView(useEmbeddedWebview) + .ExecuteAsync(); + ``` + + Android: + + ```csharp + authResult = app.AcquireTokenInteractively(scopes) + .WithParentActivityOrWindow(activity) + .WithUseEmbeddedWebView(useEmbeddedWebview) + .ExecuteAsync(); + ``` + +#### Choosing between embedded web browser or system browser on Xamarin.iOS + +In your iOS app, in `AppDelegate.cs` you can initialize the `ParentWindow` to `null`. It's not used in iOS + +```csharp +App.ParentWindow = null; // no UI parent on iOS +``` + +#### Choosing between embedded web browser or system browser on Xamarin.Android + +In your Android app, in `MainActivity.cs` you can set the parent activity, so that the authentication result gets back to it: + +```csharp + App.ParentWindow = this; +``` + +Then in the `MainPage.xaml.cs`: + +```csharp +authResult = await App.PCA.AcquireTokenInteractive(App.Scopes) + .WithParentActivityOrWindow(App.ParentWindow) + .WithUseEmbeddedWebView(true) + .ExecuteAsync(); +``` + +#### Detecting the presence of custom tabs on Xamarin.Android + +If you want to use the system web browser to enable SSO with the apps running in the browser, but are worried about the user experience for Android devices not having a browser with custom tab support, you have the option to decide by calling the `IsSystemWebViewAvailable()` method in `IPublicClientApplication`. This method returns `true` if the PackageManager detects custom tabs and `false` if they aren't detected on the device. + +Based on the value returned by this method, and your requirements, you can make a decision: + +- You can return a custom error message to the user. For example: "Please install Chrome to continue with authentication" -OR- +- You can fall back to the embedded webview option and launch the UI as an embedded webview. + +The code below shows the embedded webview option: + +```csharp +bool useSystemBrowser = app.IsSystemWebviewAvailable(); + +authResult = await App.PCA.AcquireTokenInteractive(App.Scopes) + .WithParentActivityOrWindow(App.ParentWindow) + .WithUseEmbeddedWebView(!useSystemBrowser) + .ExecuteAsync(); +``` + +#### .NET Core doesn't support interactive authentication with an embedded browser + +For .NET Core, acquisition of tokens interactively is only available through the system web browser, not with embedded web views. Indeed, .NET Core doesn't provide UI yet. +If you want to customize the browsing experience with the system web browser, you can implement the [IWithCustomUI](scenario-desktop-acquire-token-interactive.md#withcustomwebui) interface and even provide your own browser. diff --git a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md new file mode 100644 index 000000000..f7d84b7aa --- /dev/null +++ b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md @@ -0,0 +1,164 @@ +--- +title: Client assertions (MSAL.NET) +description: Learn about signed client assertions support for confidential client applications in the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 03/29/2023 +ms.author: dmwendia +ms.reviewer: saeeda, jmprieur +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how to use client assertions to prove the identity of my confidential client application +--- + +# Confidential client assertions + +In order to prove their identity, confidential client applications exchange a secret with Azure AD. The secret can be: +- A client secret (application password). +- A certificate, which is used to build a signed assertion containing standard claims. + +This secret can also be a signed assertion directly. + +MSAL.NET has four methods to provide either credentials or assertions to the confidential client app: +- `.WithClientSecret()` +- `.WithCertificate()` +- `.WithClientAssertion()` +- `.WithClientClaims()` + +> [!NOTE] +> While it is possible to use the `WithClientAssertion()` API to acquire tokens for the confidential client, we do not recommend using it by default as it is more advanced and is designed to handle very specific scenarios which are not common. Using the `.WithCertificate()` API will allow MSAL.NET to handle this for you. This api offers you the ability to customize your authentication request if needed but the default assertion created by `.WithCertificate()` will suffice for most authentication scenarios. This API can also be used as a workaround in some scenarios where MSAL.NET fails to perform the signing operation internally. The difference between the two is using the `WithCertificate()` requires the certificate and private key to be available on the machine creating the assertion, and using the `WithClientAssertion()` allows you to compute the assertion somewhere else, like inside the Azure Key Vault or from Managed Identity, or with a Hardware security module. + +### Client assertions + +This is useful if you want to handle the certificate yourself. For example, if you wish to use Azure KeyVault's APIs for signing, which eliminates the need for downloading the certificates. A signed client assertion takes the form of a signed JWT with the payload containing the required authentication claims mandated by Azure AD, Base64 encoded. To use it: + +```csharp +string signedClientAssertion = ComputeAssertion(); +app = ConfidentialClientApplicationBuilder.Create(config.ClientId) + .WithClientAssertion(signedClientAssertion) + .Build(); +``` + +You can also use the delegate form, which enables you to compute the assertion just in time: + +```csharp +string signedClientAssertion = ComputeAssertion(); +app = ConfidentialClientApplicationBuilder.Create(config.ClientId) + .WithClientAssertion(async (AssertionRequestOptions options) => { + // use 'options.ClientID' or 'options.TokenEndpoint' to generate client assertion + return await GetClientAssertionAsync(options.ClientID, options.TokenEndpoint, options.CancellationToken); + }) + .Build(); +``` + +The [claims expected by Azure AD](./certificate-credentials.md) in the signed assertion are: + +Claim type | Value | Description +---------- | ---------- | ---------- +aud | `https://login.microsoftonline.com/{tenantId}/v2.0/token` | The "aud" (audience) claim identifies the recipients that the JWT is intended for (here Azure AD) See [RFC 7519, Section 4.1.3](https://tools.ietf.org/html/rfc7519#section-4.1.3). In this case, that recipient is the token endpoint of the identity provider +exp | 1601519414 | The "exp" (expiration time) claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing. See [RFC 7519, Section 4.1.4](https://tools.ietf.org/html/rfc7519#section-4.1.4). This allows the assertion to be used until then, so keep it short - 5-10 minutes after `nbf` at most. Azure AD does not place restrictions on the `exp` time currently. +iss | {ClientID} | The "iss" (issuer) claim identifies the principal that issued the JWT, in this case your client application. Use the GUID application ID. +jti | (a Guid) | The "jti" (JWT ID) claim provides a unique identifier for the JWT. The identifier value MUST be assigned in a manner that ensures that there is a negligible probability that the same value will be accidentally assigned to a different data object; if the application uses multiple issuers, collisions MUST be prevented among values produced by different issuers as well. The "jti" value is a case-sensitive string. [RFC 7519, Section 4.1.7](https://tools.ietf.org/html/rfc7519#section-4.1.7) +nbf | 1601519114 | The "nbf" (not before) claim identifies the time before which the JWT MUST NOT be accepted for processing. [RFC 7519, Section 4.1.5](https://tools.ietf.org/html/rfc7519#section-4.1.5). Using the current time is appropriate. +sub | {ClientID} | The "sub" (subject) claim identifies the subject of the JWT, in this case also your application. Use the same value as `iss`. + +If you use a certificate as a client secret, the certificate must be deployed safely. We recommend that you store the certificate in a secure spot supported by the platform, such as in the certificate store on Windows or by using Azure Key Vault. + +### Crafting the asssertion + +This is an example using [Microsoft.IdentityModel.JsonWebTokens](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens/) to create the assertion for you. + +```csharp + string GetSignedClientAssertion(X509Certificate2 certificate, string tenantId, string clientId) + { + // no need to add exp, nbf as JsonWebTokenHandler will add them by default. + var claims = new Dictionary() + { + { "aud", tokenEndpoint }, + { "iss", clientId }, + { "jti", Guid.NewGuid().ToString() }, + { "sub", clientId } + }; + + var securityTokenDescriptor = new SecurityTokenDescriptor + { + Claims = claims, + SigningCredentials = new X509SigningCredentials(certificate) + }; + + var handler = new JsonWebTokenHandler(); + var signedClientAssertion = handler.CreateToken(securityTokenDescriptor); + } +``` + +Alternatively, if you do not wish to use Microsoft.IdentityModel.JsonWebTokens: + +```csharp +static string Base64UrlEncode(byte[] arg) +{ + char Base64PadCharacter = '='; + char Base64Character62 = '+'; + char Base64Character63 = '/'; + char Base64UrlCharacter62 = '-'; + char Base64UrlCharacter63 = '_'; + + string s = Convert.ToBase64String(arg); + s = s.Split(Base64PadCharacter)[0]; // RemoveAccount any trailing padding + s = s.Replace(Base64Character62, Base64UrlCharacter62); // 62nd char of encoding + s = s.Replace(Base64Character63, Base64UrlCharacter63); // 63rd char of encoding + + return s; +} + +static string GetSignedClientAssertion(X509Certificate2 certificate, string tenantId, string clientId) +{ + // Get the RSA with the private key, used for signing. + var rsa = certificate.GetRSAPrivateKey(); + + //alg represents the desired signing algorithm, which is SHA-256 in this case + //x5t represents the certificate thumbprint base64 url encoded + var header = new Dictionary() + { + { "alg", "RS256"}, + { "typ", "JWT" }, + { "x5t", Base64UrlEncode(certificate.GetCertHash()) } + }; + + //Please see the previous code snippet on how to craft claims for the GetClaims() method + var claims = GetClaims(tenantId, clientId); + + var headerBytes = JsonSerializer.SerializeToUtf8Bytes(header); + var claimsBytes = JsonSerializer.SerializeToUtf8Bytes(claims); + string token = Base64UrlEncode(headerBytes) + "." + Base64UrlEncode(claimsBytes); + + string signature = Base64UrlEncode(rsa.SignData(Encoding.UTF8.GetBytes(token), HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1)); + string signedClientAssertion = string.Concat(token, ".", signature); + return signedClientAssertion; +} +``` + +### WithClientClaims + +In some cases, developers want to inject some claims into the assertions, but would still like MSAL to handle the creation of the assertion and the signing. + +`WithClientClaims(X509Certificate2 certificate, IDictionary claimsToSign, bool mergeWithDefaultClaims = true)` will produce a signed assertion containing the claims expected by Azure AD plus additional client claims that you want to send. + +```csharp +string ipAddress = "192.168.1.2"; +X509Certificate2 certificate = ReadCertificate(config.CertificateName); +app = ConfidentialClientApplicationBuilder.Create(config.ClientId) + .WithAuthority(new Uri(config.Authority)) + .WithClientClaims(certificate, + new Dictionary { { "client_ip", ipAddress } }) + .Build(); + +``` + +If one of the claims in the dictionary that you pass in is the same as one of the mandatory claims, the additional claim's value will be taken into account. It will override the claims computed by MSAL.NET. + +If you want to provide your own claims, including the mandatory claims expected by Azure AD, pass in `false` for the `mergeWithDefaultClaims` parameter. diff --git a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md new file mode 100644 index 000000000..423cb0df5 --- /dev/null +++ b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md @@ -0,0 +1,185 @@ +--- +title: Handle errors and exceptions in MSAL.NET +description: Learn how to handle errors and exceptions, Conditional Access claims challenges, and retries in MSAL.NET. +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 01/25/2023 +ms.author: dmwendia +ms.reviewer: saeeda, jmprieur +ms.custom: aaddev, devx-track-dotnet +--- +# Handle errors and exceptions in MSAL.NET + +[!INCLUDE [Active directory error handling introduction](./includes/error-handling-and-tips/error-handling-introduction.md)] + +## Error handling in MSAL.NET + +### Exception types +[MsalClientException](/dotnet/api/microsoft.identity.client.msalexception) is thrown when the library itself detects an error state, such as a bad configuration. + +[MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) is thrown when the Identity Provider (Azure AD) returns an error. It's a translation of the server error. + +[MsalUIRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) is type of [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) and indicates that user interaction is required, for example because MFA is required or because the user has changed their password and a token can't be acquired silently. + + +### Processing exceptions +When processing .NET exceptions, you can use the exception type itself and the `ErrorCode` member to distinguish between exceptions. `ErrorCode` values are constants of type [MsalError](/dotnet/api/microsoft.identity.client.msalerror). + +You can also have a look at the fields of [MsalClientException](/dotnet/api/microsoft.identity.client.msalexception), [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception), and [MsalUIRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception). + +If [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) is thrown, try [Authentication and authorization error codes](reference-error-codes.md) to see if the code is listed there. + +If [MsalUIRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) is thrown, it's an indication that an interactive flow needs to happen for the user to resolve the issue. In public client apps such as desktop and mobile app, this is resolved by calling `AcquireTokenInteractive`, which displays a browser. In confidential client apps, web apps should redirect the user to the authorization page, and web APIs should return an HTTP status code and header indicative of the authentication failure (401 Unauthorized and a WWW-Authenticate header). + +### Common .NET exceptions + +Here are the common exceptions that might be thrown and some possible mitigations: + +| Exception | Error code | Mitigation| +| --- | --- | --- | +| [MsalUiRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) | AADSTS65001: The user or administrator hasn't consented to use the application with ID '{appId}' named '{appName}'. Send an interactive authorization request for this user and resource.| Get user consent first. If you aren't using .NET Core (which doesn't have any Web UI), call (once only) `AcquireTokeninteractive`. If you're using .NET core or don't want to do an `AcquireTokenInteractive`, the user can navigate to a URL to give consent: `https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id={clientId}&response_type=code&scope=user.read`. to call `AcquireTokenInteractive`: `app.AcquireTokenInteractive(scopes).WithAccount(account).WithClaims(ex.Claims).ExecuteAsync();`| +| [MsalUiRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) | AADSTS50079: The user is required to use [multi-factor authentication (MFA)](../authentication/concept-mfa-howitworks.md).| There's no mitigation. If MFA is configured for your tenant and Azure Active Directory (Azure AD) decides to enforce it, fall back to an interactive flow such as `AcquireTokenInteractive`.| +| [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) |AADSTS90010: The grant type isn't supported over the */common* or */consumers* endpoints. Use the */organizations* or tenant-specific endpoint. You used */common*.| As explained in the message from Azure AD, the authority needs to have a tenant or otherwise */organizations*.| +| [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) | AADSTS70002: The request body must contain the following parameter: `client_secret or client_assertion`.| This exception can be thrown if your application wasn't registered as a public client application in Azure AD. In the Azure portal, edit the manifest for your application and set `allowPublicClient` to `true`. | +| [MsalClientException](/dotnet/api/microsoft.identity.client.msalclientexception)| `unknown_user Message`: Couldn't identify logged in user| The library was unable to query the current Windows logged-in user or this user isn't AD or Azure AD joined (work-place joined users aren't supported). Mitigation 1: on UWP, check that the application has the following capabilities: Enterprise Authentication, Private Networks (Client and Server), User Account Information. Mitigation 2: Implement your own logic to fetch the username (for example, john@contoso.com) and use the `AcquireTokenByIntegratedWindowsAuth` form that takes in the username.| +| [MsalClientException](/dotnet/api/microsoft.identity.client.msalclientexception)|integrated_windows_auth_not_supported_managed_user| This method relies on a protocol exposed by Active Directory (AD). If a user was created in Azure AD without AD backing ("managed" user), this method will fail. Users created in AD and backed by Azure AD ("federated" users) can benefit from this non-interactive method of authentication. Mitigation: Use interactive authentication.| + +### `MsalUiRequiredException` + +One of common status codes returned from MSAL.NET when calling `AcquireTokenSilent()` is `MsalError.InvalidGrantError`. This status code means that the application should call the authentication library again, but in interactive mode (AcquireTokenInteractive or AcquireTokenByDeviceCodeFlow for public client applications, do have a challenge in Web apps). This is because additional user interaction is required before authentication token can be issued. + +Most of the time when `AcquireTokenSilent` fails, it is because the token cache doesn't have tokens matching your request. Access tokens expire in 1 hour, and `AcquireTokenSilent` will try to fetch a new one based on a refresh token (in OAuth2 terms, this is the "Refresh Token' flow). This flow can also fail for various reasons, for example if a tenant admin configures more stringent login policies. + +The interaction aims at having the user do an action. Some of those conditions are easy for users to resolve (for example, accept Terms of Use with a single click), and some can't be resolved with the current configuration (for example, the machine in question needs to connect to a specific corporate network). Some help the user setting-up multi-factor authentication, or install Microsoft Authenticator on their device. + +### `MsalUiRequiredException` classification enumeration + +MSAL exposes a `Classification` field, which you can read to provide a better user experience. For example to tell the user that their password expired or that they'll need to provide consent to use some resources. The supported values are part of the [`UiRequiredExceptionClassification`](/dotnet/api/microsoft.identity.client.uirequiredexceptionclassification) enum: + +| Classification | Meaning | Recommended handling | +|-------------------|-------------------|----------------------| +| BasicAction | Condition can be resolved by user interaction during the interactive authentication flow. | Call AcquireTokenInteractively(). | +| AdditionalAction | Condition can be resolved by additional remedial interaction with the system, outside of the interactive authentication flow. | Call AcquireTokenInteractively() to show a message that explains the remedial action. Calling application may choose to hide flows that require additional_action if the user is unlikely to complete the remedial action. | +| MessageOnly | Condition can't be resolved at this time. Launching interactive authentication flow will show a message explaining the condition. | Call AcquireTokenInteractively() to show a message that explains the condition. AcquireTokenInteractively() will return UserCanceled error after the user reads the message and closes the window. Calling application may choose to hide flows that result in message_only if the user is unlikely to benefit from the message.| +| ConsentRequired | User consent is missing, or has been revoked. | Call AcquireTokenInteractively() for user to give consent. | +| UserPasswordExpired | User's password has expired. | Call AcquireTokenInteractively() so that user can reset their password. | +| PromptNeverFailed| Interactive Authentication was called with the parameter prompt=never, forcing MSAL to rely on browser cookies and not to display the browser. This has failed. | Call AcquireTokenInteractively() without Prompt.None | +| AcquireTokenSilentFailed | MSAL SDK doesn't have enough information to fetch a token from the cache. This can be because no tokens are in the cache or an account wasn't found. The error message has more details. | Call AcquireTokenInteractively(). | +| None | No further details are provided. Condition may be resolved by user interaction during the interactive authentication flow. | Call AcquireTokenInteractively(). | + +## .NET code example + +```csharp +AuthenticationResult res; +try +{ + res = await application.AcquireTokenSilent(scopes, account) + .ExecuteAsync(); +} +catch (MsalUiRequiredException ex) when (ex.ErrorCode == MsalError.InvalidGrantError) +{ + switch (ex.Classification) + { + case UiRequiredExceptionClassification.None: + break; + case UiRequiredExceptionClassification.MessageOnly: + // You might want to call AcquireTokenInteractive(). Azure AD will show a message + // that explains the condition. AcquireTokenInteractively() will return UserCanceled error + // after the user reads the message and closes the window. The calling application may choose + // to hide features or data that result in message_only if the user is unlikely to benefit + // from the message + try + { + res = await application.AcquireTokenInteractive(scopes).ExecuteAsync(); + } + catch (MsalClientException ex2) when (ex2.ErrorCode == MsalError.AuthenticationCanceledError) + { + // Do nothing. The user has seen the message + } + break; + + case UiRequiredExceptionClassification.BasicAction: + // Call AcquireTokenInteractive() so that the user can, for instance accept terms + // and conditions + + case UiRequiredExceptionClassification.AdditionalAction: + // You might want to call AcquireTokenInteractive() to show a message that explains the remedial action. + // The calling application may choose to hide flows that require additional_action if the user + // is unlikely to complete the remedial action (even if this means a degraded experience) + + case UiRequiredExceptionClassification.ConsentRequired: + // Call AcquireTokenInteractive() for user to give consent. + + case UiRequiredExceptionClassification.UserPasswordExpired: + // Call AcquireTokenInteractive() so that user can reset their password + + case UiRequiredExceptionClassification.PromptNeverFailed: + // You used WithPrompt(Prompt.Never) and this failed + + case UiRequiredExceptionClassification.AcquireTokenSilentFailed: + default: + // May be resolved by user interaction during the interactive authentication flow. + res = await application.AcquireTokenInteractive(scopes) + .ExecuteAsync(); break; + } +} +``` +[!INCLUDE [Active directory error handling claims challenges](./includes/error-handling-and-tips/error-handling-claims-challenges.md)] + +When calling an API requiring Conditional Access from MSAL.NET, your application will need to handle claim challenge exceptions. This will appear as an [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) where the [Claims](/dotnet/api/microsoft.identity.client.msalserviceexception.claims) property won't be empty. + +To handle the claim challenge, you'll need to use the `.WithClaim()` method of the [`PublicClientApplicationBuilder`](/dotnet/api/microsoft.identity.client.publicclientapplicationbuilder) class. + +[!INCLUDE [Active directory error handling retries](./includes/error-handling-and-tips/error-handling-retries.md)] + +### HTTP error codes 500-600 + +MSAL.NET implements a simple retry-once mechanism for errors with HTTP error codes 500-600. + +[MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) surfaces `System.Net.Http.Headers.HttpResponseHeaders` as a property `namedHeaders`. You can use additional information from the error code to improve the reliability of your applications. In the case described, you can use the `RetryAfterproperty` (of type `RetryConditionHeaderValue`) and compute when to retry. + +Here's an example for a daemon application using the client credentials flow. You can adapt this to any of the methods for acquiring a token. + +```csharp + +bool retry = false; +do +{ + TimeSpan? delay; + try + { + result = await publicClientApplication.AcquireTokenForClient(scopes, account).ExecuteAsync(); + } + catch (MsalServiceException serviceException) + { + if (serviceException.ErrorCode == "temporarily_unavailable") + { + RetryConditionHeaderValue retryAfter = serviceException.Headers.RetryAfter; + if (retryAfter.Delta.HasValue) + { + delay = retryAfter.Delta; + } + else if (retryAfter.Date.HasValue) + { + delay = (retryAfter.Date.Value – DateTimeOffset.Now).TotalMilliseconds; + } + } + } + // . . . + if (delay.HasValue) + { + Thread.Sleep((int)delay.Value.TotalMilliseconds); // sleep or other + retry = true; + } +} while (retry); +``` + +## Next steps + +Consider enabling [Logging in MSAL.NET](msal-logging-dotnet.md) to help you diagnose and debug issues. diff --git a/msal-dotnet-articles/advanced/exceptions/msal-logging.md b/msal-dotnet-articles/advanced/exceptions/msal-logging.md new file mode 100644 index 000000000..3a91f1241 --- /dev/null +++ b/msal-dotnet-articles/advanced/exceptions/msal-logging.md @@ -0,0 +1,129 @@ +--- +title: Logging errors and exceptions in MSAL.NET +description: Learn how to log errors and exceptions in MSAL.NET +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 10/21/2022 +ms.author: dmwendia +ms.reviewer: saeeda, jmprieur +ms.custom: aaddev, devx-track-dotnet +--- + +# Logging in MSAL.NET + +[!INCLUDE [MSAL logging introduction](./includes/error-handling-and-tips/error-logging-introduction.md)] + +## Configure logging in MSAL.NET + +In MSAL, logging is set at application creation using the `.WithLogging` builder modifier. This method takes optional parameters: + +- `IIdentityLogger` is the logging implementation used by MSAL.NET to produce logs for debugging or health check purposes. Logs are only sent if logging is enabled. +- `Level` enables you to decide which level of logging you want. Setting it to Errors will only get errors +- `PiiLoggingEnabled` enables you to log personal and organizational data (PII) if set to true. By default, this parameter is set to false, so that your application doesn't log personal data. +- `LogCallback` is set to a delegate that does the logging. If `PiiLoggingEnabled` is true, this method will receive messages that can have PII, in which case the `containsPii` flag will be set to true. +- `DefaultLoggingEnabled` enables the default logging for the platform. By default it's false. If you set it to true it uses Event Tracing in Desktop/UWP applications, NSLog on iOS and logcat on Android. + +### IIdentityLogger Interface +```CSharp +namespace Microsoft.IdentityModel.Abstractions +{ + public interface IIdentityLogger + { + // + // Summary: + // Checks to see if logging is enabled at given eventLogLevel. + // + // Parameters: + // eventLogLevel: + // Log level of a message. + bool IsEnabled(EventLogLevel eventLogLevel); + + // + // Summary: + // Writes a log entry. + // + // Parameters: + // entry: + // Defines a structured message to be logged at the provided Microsoft.IdentityModel.Abstractions.LogEntry.EventLogLevel. + void Log(LogEntry entry); + } +} +``` + +> [!NOTE] +> Partner libraries (`Microsoft.Identity.Web`, `Microsoft.IdentityModel`) provide implementations of this interface already for various environments (in particular ASP.NET Core) + +### IIdentityLogger Implementation + +The following code snippets are examples of such an implementation. If you use the .NET core configuration, environment variable driven logs levels can be provided for free, in addition to the configuration file based log levels. + +#### Log level from configuration file + +It's highly recommended to configure your code to use a configuration file in your environment to set the log level as it will enable your code to change the MSAL logging level without needing to rebuild or restart the application. This is critical for diagnostic purposes, enabling us to quickly gather the required logs from the application that is currently deployed and in production. Verbose logging can be costly so it's best to use the *Information* level by default and enable verbose logging when an issue is encountered. [See JSON configuration provider](/aspnet/core/fundamentals/configuration#json-configuration-provider) for an example on how to load data from a configuration file without restarting the application. + +#### Log Level as Environment Variable + +Another option we recommended is to configure your code to use an environment variable on the machine to set the log level as it will enable your code to change the MSAL logging level without needing to rebuild the application. This is critical for diagnostic purposes, enabling us to quickly gather the required logs from the application that is currently deployed and in production. + +See [EventLogLevel](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/src/Microsoft.IdentityModel.Abstractions/EventLogLevel.cs) for details on the available log levels. + +Example: + +```CSharp + class MyIdentityLogger : IIdentityLogger + { + public EventLogLevel MinLogLevel { get; } + + public MyIdentityLogger() + { + //Try to pull the log level from an environment variable + var msalEnvLogLevel = Environment.GetEnvironmentVariable("MSAL_LOG_LEVEL"); + + if (Enum.TryParse(msalEnvLogLevel, out EventLogLevel msalLogLevel)) + { + MinLogLevel = msalLogLevel; + } + else + { + //Recommended default log level + MinLogLevel = EventLogLevel.Informational; + } + } + + public bool IsEnabled(EventLogLevel eventLogLevel) + { + return eventLogLevel <= MinLogLevel; + } + + public void Log(LogEntry entry) + { + //Log Message here: + Console.WriteLine(entry.message); + } + } +``` + +Using `MyIdentityLogger`: +```CSharp + MyIdentityLogger myLogger = new MyIdentityLogger(logLevel); + + var app = ConfidentialClientApplicationBuilder + .Create(TestConstants.ClientId) + .WithClientSecret("secret") + .WithExperimentalFeatures() //Currently an experimental feature, will be removed soon + .WithLogging(myLogger, piiLogging) + .Build(); +``` + +> [!TIP] + > See the [MSAL.NET wiki](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki) for samples of MSAL.NET logging and more. + +## Next steps + +For more code samples, refer to [Microsoft identity platform code samples](sample-v2-code.md). diff --git a/msal-dotnet-articles/advanced/httpclient.md b/msal-dotnet-articles/advanced/httpclient.md index 0fad3cf32..83678cc69 100644 --- a/msal-dotnet-articles/advanced/httpclient.md +++ b/msal-dotnet-articles/advanced/httpclient.md @@ -57,6 +57,11 @@ public class StaticClientWithProxyFactory : IMsalHttpClientFactory } ``` + +## HttpClient and Xamarin iOS + +When using Xamarin iOS, it is recommended to create an `HttpClient` that explicitly uses the `NSURLSession`-based handler for iOS 7 and newer. MSAL.NET automatically creates an `HttpClient` that uses `NSURLSessionHandler` for iOS 7 and newer. For more information, read the [Xamarin iOS documentation for HttpClient](/xamarin/cross-platform/macios/http-stack). + ## Troubleshooting **Problem**: On a desktop application, the authorization experience do not use the HttpClient I defined diff --git a/msal-dotnet-articles/getting-started/initializing-client-applications.md b/msal-dotnet-articles/getting-started/initializing-client-applications.md new file mode 100644 index 000000000..4165a50e9 --- /dev/null +++ b/msal-dotnet-articles/getting-started/initializing-client-applications.md @@ -0,0 +1,167 @@ +--- +title: Initialize MSAL.NET client applications +description: Learn about initializing public client and confidential client applications using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, engagement-fy23, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about initializing client applications so I can decide if this platform meets my application development needs and requirements. +--- + +# Initialize client applications using MSAL.NET + +This article describes initializing public client and confidential client applications using the Microsoft Authentication Library for .NET (MSAL.NET). To learn more about the client application types, see [Public client and confidential client applications](msal-client-applications.md). + +With MSAL.NET 3.x, the recommended way to instantiate an application is by using the application builders: `PublicClientApplicationBuilder` and `ConfidentialClientApplicationBuilder`. They offer a powerful mechanism to configure the application from the code, a configuration file, or even by mixing both approaches. + +## Prerequisites + +Before initializing an application, you first need to register it so that your app can be integrated with the Microsoft identity platform. Refer to the [Quickstart: Register an application with the Microsoft identity platform](quickstart-register-app.md) for more information. After registration, you may need the following information (which can be found in the Azure portal): + +- **Application (client) ID** - This is a string representing a GUID. +- **Directory (tenant) ID** - Provides identity and access management (IAM) capabilities to applications and resources used by your organization. It can specify if you're writing a line of business application solely for your organization (also named single-tenant application). +- The identity provider URL (named the **instance**) and the sign-in audience for your application. These two parameters are collectively known as the authority. +- **Client credentials** - which can take the form of an application secret (client secret string) or certificate (of type `X509Certificate2`) if it's a confidential client app. +- For web apps, and sometimes for public client apps (in particular when your app needs to use a broker), you'll have also set the **Redirect URI** where the identity provider will contact back your application with the security tokens. + +## Initializing applications + +There are many different ways to instantiate client applications. + +### Initializing a public client application from code + +The following code instantiates a public client application, signing-in users in the Microsoft Azure public cloud, with their work, school or personal Microsoft accounts. + +```csharp +IPublicClientApplication app = PublicClientApplicationBuilder.Create(clientId) + .Build(); +``` + +### Initializing a confidential client application from code + +In the same way, the following code instantiates a confidential application (a Web app located at `https://myapp.azurewebsites.net`) handling tokens from users in the Microsoft Azure public cloud, with their work and school accounts, or their personal Microsoft accounts. The application is identified with the identity provider by sharing a client secret: + +```csharp +string redirectUri = "https://myapp.azurewebsites.net"; +IConfidentialClientApplication app = ConfidentialClientApplicationBuilder.Create(clientId) + .WithClientSecret(clientSecret) + .WithRedirectUri(redirectUri ) + .Build(); +``` + +In production however, certificates are recommended as they're more secure than client secrets. They can be created and uploaded to the Azure portal. The code would then be the following: + +```csharp +IConfidentialClientApplication app = ConfidentialClientApplicationBuilder.Create(clientId) + .WithCertificate(certificate) + .WithRedirectUri(redirectUri ) + .Build(); +``` + +### Initializing a public client application from configuration options + +The following code instantiates a public client application from a configuration object, which could be filled-in programmatically or read from a configuration file: + +```csharp +PublicClientApplicationOptions options = GetOptions(); // your own method +IPublicClientApplication app = PublicClientApplicationBuilder.CreateWithApplicationOptions(options) + .Build(); +``` + +### Initializing a confidential client application from configuration options + +The same kind of pattern applies to confidential client applications. You can also add other parameters using `.WithXXX` modifiers. This example uses `.WithCertificate`. + +```csharp +ConfidentialClientApplicationOptions options = GetOptions(); // your own method +IConfidentialClientApplication app = ConfidentialClientApplicationBuilder.CreateWithApplicationOptions(options) + .WithCertificate(certificate) + .Build(); +``` + +## Builder modifiers + +In the code snippets using application builders, many `.With` methods can be applied as modifiers (for example, `.WithCertificate` and `.WithRedirectUri`). + +### Modifiers common to public and confidential client applications + +The modifiers you can set on a public client or confidential client application builder can be found in the `AbstractApplicationBuilder` class. The different methods can be found in the [Azure SDK for .NET documentation](/dotnet/api/microsoft.identity.client.abstractapplicationbuilder-1). + +### Modifiers specific to Xamarin.iOS applications + +The modifiers you can set on a public client application builder on Xamarin.iOS are: + +|Modifier | Description| +|--------- | --------- | +|`.WithIosKeychainSecurityGroup()` | **Xamarin.iOS only**: Sets the iOS key chain security group (for the cache persistence).| + +### Modifiers specific to confidential client applications + +The modifiers you can set that are specific to a confidential client application builder can be found in the `ConfidentialClientApplicationBuilder` class. The different methods can be found in the [Azure SDK for .NET documentation](/dotnet/api/microsoft.identity.client.confidentialclientapplicationbuilder). + +Modifiers such as `.WithCertificate(X509Certificate2 certificate)` and `.WithClientSecret(string clientSecret)` are mutually exclusive. If you provide both, MSAL will throw a meaningful exception. + +### Example of usage of modifiers + +Let's assume that your application is a line-of-business application, which is only for your organization. Then you can write: + +```csharp +IPublicClientApplication app; +app = PublicClientApplicationBuilder.Create(clientId) + .WithAuthority(AzureCloudInstance.AzurePublic, tenantId) + .Build(); +``` + +Programming for national clouds has simplified, so if you want your application to be a multi-tenant application in a national cloud, you could write, for instance: + +```csharp +IPublicClientApplication app; +app = PublicClientApplicationBuilder.Create(clientId) + .WithAuthority(AzureCloudInstance.AzureUsGovernment, AadAuthorityAudience.AzureAdMultipleOrgs) + .Build(); +``` + +There's also an override for ADFS (MSAL.NET will only support ADFS 2019 or later): + +```csharp +IPublicClientApplication app; +app = PublicClientApplicationBuilder.Create(clientId) + .WithAdfsAuthority("https://consoso.com/adfs") + .Build(); +``` + +Finally, if you're an Azure AD B2C developer, you can specify your tenant like this: + +```csharp +IPublicClientApplication app; +app = PublicClientApplicationBuilder.Create(clientId) + .WithB2CAuthority("https://fabrikamb2c.b2clogin.com/tfp/{tenant}/{PolicySignInSignUp}") + .Build(); +``` + +## See also + +[API reference documentation](/dotnet/api/microsoft.identity.client) + +[Package on NuGet](https://www.nuget.org/packages/Microsoft.Identity.Client/) + +[Library source code](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) + +[Code samples](sample-v2-code.md) + +## Next steps + +After you've initialized the client application, your next task is to add support for user sign-in, authorized API access, or both. + +Our application scenario documentation provides guidance for signing in a user and acquiring an access token to access an API on behalf of that user: + +- [Web app that signs in users: Sign-in and sign-out](scenario-web-app-sign-user-sign-in.md) +- [Web app that calls web APIs: Acquire a token](scenario-web-app-call-api-acquire-token.md) diff --git a/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md b/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md new file mode 100644 index 000000000..cc24a44c5 --- /dev/null +++ b/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md @@ -0,0 +1,88 @@ +--- +title: Instantiate a confidential client app (MSAL.NET) +description: Learn how to instantiate a confidential client application with configuration options using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how to use application config options so I can instantiate a confidential client app. +--- + +# Instantiate a confidential client application with configuration options using MSAL.NET + +This article describes how to instantiate a [confidential client application](msal-client-applications.md) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. + +Before initializing an application, you first need to [register](quickstart-register-app.md) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): + +- The client ID (a string representing a GUID) +- The identity provider URL (named the instance) and the sign-in audience for your application. These two parameters are collectively known as the authority. +- The tenant ID if you are writing a line-of-business application solely for your organization (also named single-tenant application). +- The application secret (client secret string) or certificate (of type X509Certificate2) if it's a confidential client app. +- For web apps, and sometimes for public client apps (in particular when your app needs to use a broker), you'll have also set the redirectUri where the identity provider will contact back your application with the security tokens. + +## Configure the application from the config file +The name of the properties of the options in MSAL.NET match the name of the properties of the `AzureADOptions` in ASP.NET Core, so you don't need to write any glue code. + +An ASP.NET Core application configuration is described in an *appsettings.json* file: + +```json +{ + "AzureAd": { + "Instance": "https://login.microsoftonline.com/", + "Domain": "[Enter the domain of your tenant, e.g. contoso.onmicrosoft.com]", + "TenantId": "[Enter 'common', or 'organizations' or the Tenant Id (Obtained from the Azure portal. Select 'Endpoints' from the 'App registrations' blade and use the GUID in any of the URLs), e.g. da41245a5-11b3-996c-00a8-4d99re19f292]", + "ClientId": "[Enter the Client Id (Application ID obtained from the Azure portal), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]", + "CallbackPath": "/signin-oidc", + "SignedOutCallbackPath ": "/signout-callback-oidc", + + "ClientSecret": "[Copy the client secret added to the app from the Azure portal]" + }, + "Logging": { + "LogLevel": { + "Default": "Warning" + } + }, + "AllowedHosts": "*" +} +``` + +Starting in MSAL.NET v3.x, you can configure your confidential client application from the config file. + +In the class where you want to configure and instantiate your application, declare a `ConfidentialClientApplicationOptions` object. Bind the configuration read from the source (including the appconfig.json file) to the instance of the application options, using the `IConfigurationRoot.Bind()` method from the [Microsoft.Extensions.Configuration.Binder NuGet package](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder): + +```csharp +using Microsoft.Identity.Client; + +private ConfidentialClientApplicationOptions _applicationOptions; +_applicationOptions = new ConfidentialClientApplicationOptions(); +configuration.Bind("AzureAD", _applicationOptions); +``` + +This enables the content of the "AzureAD" section of the *appsettings.json* file to be bound to the corresponding properties of the `ConfidentialClientApplicationOptions` object. Next, build a `ConfidentialClientApplication` object: + +```csharp +IConfidentialClientApplication app; +app = ConfidentialClientApplicationBuilder.CreateWithApplicationOptions(_applicationOptions) + .Build(); +``` + +## Add runtime configuration +In a confidential client application, you usually have a cache per user. Therefore you will need to get the cache associated with the user and inform the application builder that you want to use it. In the same way, you might have a dynamically computed redirect URI. In this case, the code is as follows: + +```csharp +IConfidentialClientApplication app; +var request = httpContext.Request; +var currentUri = UriHelper.BuildAbsolute(request.Scheme, request.Host, request.PathBase, _azureAdOptions.CallbackPath ?? string.Empty); +app = ConfidentialClientApplicationBuilder.CreateWithApplicationOptions(_applicationOptions) + .WithRedirectUri(currentUri) + .Build(); +TokenCache userTokenCache = _tokenCacheProvider.SerializeCache(app.UserTokenCache,httpContext, claimsPrincipal); +``` diff --git a/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md b/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md new file mode 100644 index 000000000..f83934b66 --- /dev/null +++ b/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md @@ -0,0 +1,114 @@ +--- +title: Instantiate a public client app (MSAL.NET) +description: Learn how to instantiate a public client application with configuration options using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky +ms.custom: devx-track-csharp, aaddev, devx-track-dotnet +#Customer intent: As an application developer, I want to learn how to use application config options so I can instantiate a public client app. +--- + +# Instantiate a public client application with configuration options using MSAL.NET + +This article describes how to instantiate a [public client application](msal-client-applications.md) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. + +Before initializing an application, you first need to [register](quickstart-register-app.md) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): + +- The client ID (a string representing a GUID) +- The identity provider URL (named the instance) and the sign-in audience for your application. These two parameters are collectively known as the authority. +- The tenant ID if you are writing a line of business application solely for your organization (also named single-tenant application). +- For web apps, and sometimes for public client apps (in particular when your app needs to use a broker), you'll have also set the redirectUri where the identity provider will contact back your application with the security tokens. + +## Default Reply URI + +In MSAL.NET 4.1+ the default redirect URI (Reply URI) can now be set with the `public PublicClientApplicationBuilder WithDefaultRedirectUri()` method. This method will set the redirect URI property of public client application to the recommended default. + +This method's behavior is dependent upon the platform that you are using at the time. Here is a table that describes what redirect URI is set on certain platforms: + +Platform | Redirect URI +--------- | -------------- +Desktop app (.NET FW) | `https://login.microsoftonline.com/common/oauth2/nativeclient` +UWP | value of `WebAuthenticationBroker.GetCurrentApplicationCallbackUri()` +.NET Core | `http://localhost` + +For the UWP platform, is enhanced the experience by enabling SSO with the browser by setting the value to the result of `WebAuthenticationBroker.GetCurrentApplicationCallbackUri()`. + +For .NET Core, MSAL.Net is setting the value to the local host to enable the user to use the system browser for interactive authentication. + +> [!NOTE] +> For embedded browsers in desktop scenarios the redirect URI used is intercepted by MSAL to detect that a response is returned from the identity provider that an auth code has been returned. This URI can therefore be used in any cloud without seeing an actual redirect to that URI. This means you can and should use `https://login.microsoftonline.com/common/oauth2/nativeclient` in any cloud. If you prefer you can also use any other URI as long as you configure the redirect URI correctly with MSAL and in the app registration. Specifying the default URI in the application registration means there is the least amount of setup in MSAL. + + +A .NET Core console application could have the following *appsettings.json* configuration file: + +```json +{ + "Authentication": { + "AzureCloudInstance": "AzurePublic", + "AadAuthorityAudience": "AzureAdMultipleOrgs", + "ClientId": "ebe2ab4d-12b3-4446-8480-5c3828d04c50" + }, + + "WebAPI": { + "MicrosoftGraphBaseEndpoint": "https://graph.microsoft.com" + } +} +``` + +The following code reads this file using the .NET configuration framework: + +```csharp +public class SampleConfiguration +{ + /// + /// Authentication options + /// + public PublicClientApplicationOptions PublicClientApplicationOptions { get; set; } + + /// + /// Base URL for Microsoft Graph (it varies depending on whether the application is ran + /// in Microsoft Azure public clouds or national / sovereign clouds + /// + public string MicrosoftGraphBaseEndpoint { get; set; } + + /// + /// Reads the configuration from a json file + /// + /// Path to the configuration json file + /// SampleConfiguration as read from the json file + public static SampleConfiguration ReadFromJsonFile(string path) + { + // .NET configuration + IConfigurationRoot Configuration; + var builder = new ConfigurationBuilder() + .SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile(path); + Configuration = builder.Build(); + + // Read the auth and graph endpoint config + SampleConfiguration config = new SampleConfiguration() + { + PublicClientApplicationOptions = new PublicClientApplicationOptions() + }; + Configuration.Bind("Authentication", config.PublicClientApplicationOptions); + config.MicrosoftGraphBaseEndpoint = Configuration.GetValue("WebAPI:MicrosoftGraphBaseEndpoint"); + return config; + } +} +``` + +The following code creates your application, using the configuration from the settings file: + +```csharp +SampleConfiguration config = SampleConfiguration.ReadFromJsonFile("appsettings.json"); +var app = PublicClientApplicationBuilder.CreateWithApplicationOptions(config.PublicClientApplicationOptions) + .Build(); +``` diff --git a/msal-dotnet-articles/how-to/differences-adal-msal-net.md b/msal-dotnet-articles/how-to/differences-adal-msal-net.md new file mode 100644 index 000000000..252d50633 --- /dev/null +++ b/msal-dotnet-articles/how-to/differences-adal-msal-net.md @@ -0,0 +1,247 @@ +--- +title: Differences between ADAL.NET and MSAL.NET apps +description: Learn about the differences between the Microsoft Authentication Library for .NET (MSAL.NET) and Azure AD Authentication Library for .NET (ADAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: reference +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky, jmprieur, shermanouko +ms.custom: devx-track-csharp, aaddev, has-adal-ref, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about the differences between the ADAL.NET and MSAL.NET libraries so I can migrate my applications to MSAL.NET. +--- + +# Differences between ADAL.NET and MSAL.NET apps + +Migrating your applications from using ADAL to using MSAL comes with security and resiliency benefits. This article outlines differences between MSAL.NET and ADAL.NET. All new applications should use MSAL.NET and the Microsoft identity platform, which is the latest generation of Microsoft Authentication Libraries. Using MSAL.NET, you acquire tokens for users signing-in to your application with Azure AD (work and school accounts), Microsoft (personal) accounts (MSA), or Azure AD B2C. If you have an existing application that is using ADAL.NET, migrate it to MSAL.NET. + +You still need to use ADAL.NET if your application needs to sign in users with earlier versions of [Active Directory Federation Services (ADFS)](/windows-server/identity/active-directory-federation-services). For more information, see [ADFS support](https://aka.ms/msal-net-adfs-support). + +## Prerequisites + +Go through [MSAL overview](./msal-overview.md) to learn more about MSAL. + +## Differences + +| | **ADAL NET** | **MSAL NET** | +|-----------------------------|--------------------------------------------|---------------------| +| **NuGet packages and Namespaces** |ADAL was consumed from the [Microsoft.IdentityModel.Clients.ActiveDirectory](https://www.nuget.org/packages/Microsoft.IdentityModel.Clients.ActiveDirectory) NuGet package. The namespace was `Microsoft.IdentityModel.Clients.ActiveDirectory`. | Add the [Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client) NuGet package, and use the `Microsoft.Identity.Client` namespace. If you're building a confidential client application, check out [Microsoft.Identity.Web](https://www.nuget.org/packages/Microsoft.Identity.Web). | +| **Scopes and resources** | ADAL.NET acquires tokens for *resources*. | MSAL.NET acquires tokens for *scopes*. Several MSAL.NET `AcquireTokenXXX` overrides require a parameter called scopes(`IEnumerable scopes`). This parameter is a simple list of strings that declare the permissions and resources that are requested. Well-known scopes are the [Microsoft Graph's scopes](/graph/permissions-reference). You can also [access v1.0 resources using MSAL.NET](#scopes). | +| **Core classes** | ADAL.NET used [AuthenticationContext](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AuthenticationContext:-the-connection-to-Azure-AD) as the representation of your connection to the Security Token Service (STS) or authorization server, through an Authority. | MSAL.NET is designed around [client applications](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-Applications). It defines `IPublicClientApplication` interfaces for public client applications and `IConfidentialClientApplication` for confidential client applications, as well as a base interface `IClientApplicationBase` for the contract common to both types of applications.| +| **Token acquisition** | In public clients, ADAL uses `AcquireTokenAsync` and `AcquireTokenSilentAsync` for authentication calls. | In public clients, MSAL uses `AcquireTokenInteractive` and `AcquireTokenSilent` for the same authentication calls. The parameters are different from the ADAL ones.

In Confidential client applications, there are [token acquisition methods](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Acquiring-Tokens) with an explicit name depending on the scenario. Another difference is that, in MSAL.NET, you no longer have to pass in the `ClientID` of your application in every AcquireTokenXX call. The `ClientID` is set only once when building `IPublicClientApplication` or `IConfidentialClientApplication`.| +| **IAccount and IUser** | ADAL defines the notion of user through the IUser interface. However, a user is a human or a software agent. As such, a user can own one or more accounts in the Microsoft identity platform (several Azure AD accounts, Azure AD B2C, Microsoft personal accounts). The user can also be responsible for one or more Microsoft identity platform accounts. | MSAL.NET defines the concept of account (through the IAccount interface). The IAccount interface represents information about a single account. The user can have several accounts in different tenants. MSAL.NET provides better information in guest scenarios, as home account information is provided. You can read more about the [differences between IUser and IAccount](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/msal-net-2-released#iuser-is-replaced-by-iaccount).| +| **Cache persistence** | ADAL.NET allows you to extend the `TokenCache` class to implement the desired persistence functionality on platforms without a secure storage (.NET Framework and .NET core) by using the `BeforeAccess`, and `BeforeWrite` methods. For details, see [token cache serialization in ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Token-cache-serialization). | MSAL.NET makes the token cache a sealed class, removing the ability to extend it. As such, your implementation of token cache persistence must be in the form of a helper class that interacts with the sealed token cache. This interaction is described in [token cache serialization in MSAL.NET](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/token-cache-serialization) article. The serialization for a public client application (See [token cache for a public client application](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/token-cache-serialization#token-cache-for-a-public-client-application)), is different from that of for a confidential client application (See [token cache for a web app or web API](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/token-cache-serialization#token-cache-for-a-public-client-application)). | +| **Common authority** | ADAL uses Azure AD v1.0. `https://login.microsoftonline.com/common` authority in Azure AD v1.0 (which ADAL uses) allows users to sign in using any Azure AD organization (work or school) account. Azure AD v1.0 doesn't allow sign in with Microsoft personal accounts. For more information, see [authority validation in ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AuthenticationContext:-the-connection-to-Azure-AD#authority-validation). | MSAL uses Azure AD v2.0. `https://login.microsoftonline.com/common` authority in Azure AD v2.0 (which MSAL uses) allows users to sign in with any Azure AD organization (work or school) account or with a Microsoft personal account. To restrict sign in using only organization accounts (work or school account) in MSAL, you'll need to use the `https://login.microsoftonline.com/organizations` endpoint. For details, see the `authority` parameter in [public client application](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Client-Applications#publicclientapplication). | + +## Supported grants + +Below is a summary comparing MSAL.NET and ADAL.NET supported grants for both public and confidential client applications. + +### Public client applications + +The following image summarizes some of the differences between ADAL.NET and MSAL.NET for a public client application. + +[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a public client application.](media/msal-compare-msaldotnet-and-adaldotnet/differences.png)](media/msal-compare-msaldotnet-and-adaldotnet/differences.png#lightbox) + +Here are the grants supported in ADAL.NET and MSAL.NET for Desktop and Mobile applications. + +Grant | MSAL.NET | ADAL.NET | +--------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +Interactive | [Acquiring tokens interactively in MSAL.NET](scenario-desktop-acquire-token-interactive.md) | [Interactive Auth](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-interactively---Public-client-application-flows) | +Integrated Windows authentication | [Integrated Windows authentication](scenario-desktop-acquire-token-integrated-windows-authentication.md) | [Integrated authentication on Windows (Kerberos)](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-Integrated-authentication-on-Windows-(Kerberos)) | +Username / Password | [Username-password authentication](scenario-desktop-acquire-token-username-password.md) | [Acquiring tokens with username and password](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-username-and-password) | +Device code flow | [Device code flow](scenario-desktop-acquire-token-device-code-flow.md) | [Device profile for devices without web browsers](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Device-profile-for-devices-without-web-browsers) | + +### Confidential client applications + +The following image summarizes some of the differences between ADAL.NET and MSAL.NET for a confidential client application. + +[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a confidential client application.](media/msal-net-migration/confidential-client-application.png)](media/msal-net-migration/confidential-client-application.png#lightbox) + + +Here are the grants supported in ADAL.NET, MSAL.NET, and Microsoft.Identity.Web for web applications, web APIs, and daemon applications. + +Type of App | Grant | MSAL.NET | ADAL.NET | +------------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +Web app, web API, daemon | Client Credentials | [Client credential flows in MSAL.NET](scenario-daemon-acquire-token.md#acquiretokenforclient-api) | [Client credential flows in ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Client-credential-flows) | +Web API | On behalf of | [On behalf of in MSAL.NET](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/on-behalf-of) | [Service to service calls on behalf of the user with ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Service-to-service-calls-on-behalf-of-the-user) | +Web app | Auth Code | [Acquiring tokens with authorization codes on web apps with A MSAL.NET](scenario-web-app-call-api-acquire-token.md) | [Acquiring tokens with authorization codes on web apps with ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-authorization-codes-on-web-apps) | + +## Migrating from ADAL 2.x with refresh tokens + +In ADAL.NET v2.X, the refresh tokens were exposed allowing you to develop solutions around the use of these tokens by caching them and using the `AcquireTokenByRefreshToken` methods provided by ADAL 2.x. + +Some of those solutions were used in scenarios such as: + +- Long running services that do actions including refreshing dashboards for the users when the users are no longer connected / signed-in to the app. +- WebFarm scenarios for enabling the client to bring the refresh token to the web service (caching is done client side, encrypted cookie, and not server side). + +MSAL.NET doesn't expose refresh tokens for security reasons. MSAL handles refreshing tokens for you. + +Fortunately, MSAL.NET has an API that allows you to migrate your previous refresh tokens (acquired with ADAL) into the `IConfidentialClientApplication`: + +```csharp +/// +/// Acquires an access token from an existing refresh token and stores it and the refresh token into +/// the application user token cache, where it will be available for further AcquireTokenSilent calls. +/// This method can be used in migration to MSAL from ADAL v2 and in various integration +/// scenarios where you have a RefreshToken available. +/// (see https://aka.ms/msal-net-migration-adal2-msal2) +/// +/// Scope to request from the token endpoint. +/// Setting this to null or empty will request an access token, refresh token and ID token with default scopes +/// The refresh token from ADAL 2.x +IByRefreshToken.AcquireTokenByRefreshToken(IEnumerable scopes, string refreshToken); +``` + +With this method, you can provide the previously used refresh token along with any scopes (resources) you want. The refresh token will be exchanged for a new one and cached into your application. + +As this method is intended for scenarios that aren't typical, it isn't readily accessible with the `IConfidentialClientApplication` without first casting it to `IByRefreshToken`. + +The code snippet below shows some migration code in a confidential client application. + +```csharp +TokenCache userCache = GetTokenCacheForSignedInUser(); +string rt = GetCachedRefreshTokenForSignedInUser(); + +IConfidentialClientApplication app; +app = ConfidentialClientApplicationBuilder.Create(clientId) + .WithAuthority(Authority) + .WithRedirectUri(RedirectUri) + .WithClientSecret(ClientSecret) + .Build(); +IByRefreshToken appRt = app as IByRefreshToken; + +AuthenticationResult result = await appRt.AcquireTokenByRefreshToken(null, rt) + .ExecuteAsync() + .ConfigureAwait(false); +``` + +`GetCachedRefreshTokenForSignedInUser` retrieves the refresh token that was stored in some storage by a previous version of the application that used to use ADAL 2.x. `GetTokenCacheForSignedInUser` deserializes a cache for the signed-in user (as confidential client applications should have one cache per user). + +An access token and an ID token are returned in the `AuthenticationResult` value while the new refresh token is stored in the cache. You can also use this method for various integration scenarios where you have a refresh token available. + +## v1.0 and v2.0 tokens + +There are two versions of tokens: v1.0 tokens and v2.0 tokens. The v1.0 endpoint (used by ADAL) emits v1.0 ID tokens while the v2.0 endpoint (used by MSAL) emits v2.0 ID tokens. However, both endpoints emit access tokens of the version of the token that the web API accepts. A property of the application manifest of the web API enables developers to choose which version of token is accepted. See `accessTokenAcceptedVersion` in the [application manifest](reference-app-manifest.md) reference documentation. + +For more information about v1.0 and v2.0 access tokens, see [Azure Active Directory access tokens](access-tokens.md). + +## Exceptions + +### Interaction required exceptions + +Using MSAL.NET, you catch `MsalUiRequiredException` as described in [AcquireTokenSilent](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-a-cached-token). + +```csharp +catch(MsalUiRequiredException exception) +{ + try {"try to authenticate interactively"} +} +``` + +For details, see [Handle errors and exceptions in MSAL.NET](msal-error-handling-dotnet.md) + +ADAL.NET had less explicit exceptions. For example, when silent authentication failed in ADAL the procedure was to catch the exception and look for the `user_interaction_required` error code: + +```csharp +catch(AdalException exception) +{ + if (exception.ErrorCode == "user_interaction_required") + { + try + {“try to authenticate interactively”}} + } +} +``` + +For details, see [the recommended pattern to acquire a token in public client applications](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-a-cached-token#recommended-pattern-to-acquire-a-token) with ADAL.NET. + +### Prompt behavior + +Prompt behavior in MSAL.NET is equivalent to prompt behavior in ADAL.NET: + +| ADAL.NET | MSAL.NET | Description | +| ----------- | ----------- | -------------| +| `PromptBehavior.Auto`| `NoPrompt`| Azure AD chooses the best behavior (signing in users silently if they are signed in with only one account, or displaying the account selector if they are signed in with several accounts). | +| `PromptBehavior.Always`| `ForceLogin` | Resets the sign-in box and forces the user to reenter their credentials. | +| `PromptBehavior.RefreshSession`| `Consent`| Forces the user to consent again to all permissions. | +| `PromptBehavior.Never`| `Never`| Don't use; instead, use the [recommended pattern for public client apps](scenario-desktop-acquire-token.md?tabs=dotnet). | +| `PromptBehavior.SelectAccount`| `SelectAccount`| Displays the account selector and forces the user to select an account. | + +### Handling claim challenge exceptions + +At times when acquiring a token, Azure AD throws an exception in case a resource requires more claims from the user (for instance two-factor authentication). + +In MSAL.NET, claim challenge exceptions are handled in the following way: + +- The `Claims` are surfaced in the `MsalServiceException`. +- There's a `.WithClaim(claims)` method that can apply to the `AcquireTokenXXX` builders. + +For details see [Handling MsalUiRequiredException](msal-error-handling-dotnet.md#msaluirequiredexception). + +In ADAL.NET, claim challenge exceptions were handled in the following way: + +- `AdalClaimChallengeException` is an exception (deriving from `AdalServiceException`). The `Claims` member contains some JSON fragment with the claims, which are expected. +- The public client application receiving this exception needed to call the `AcquireTokenInteractive` override having a claims parameter. This override of `AcquireTokenInteractive` doesn't even try to hit the cache as it isn't necessary. The reason is that the token in the cache doesn't have the right claims (otherwise an `AdalClaimChallengeException` wouldn't have been thrown). As such, there's no need to look at the cache. The `ClaimChallengeException` can be received in a WebAPI doing OBO, but the `AcquireTokenInteractive` needs to be called in a public client application calling this web API. + +For details, including samples see [handling AdalClaimChallengeException](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Exceptions-in-ADAL.NET#handling-adalclaimchallengeexception). + + +## Scopes + +ADAL uses the concept of resources with `resourceId` string, MSAL.NET, however, uses scopes. The logic used by Azure AD is as follows: + +- For ADAL (v1.0) endpoint with a v1.0 access token (the only possible), `aud=resource`. +- For MSAL (v2.0 endpoint) asking an access token for a resource accepting v2.0 tokens, `aud=resource.AppId`. +- For MSAL (v2.0 endpoint) asking an access token for a resource accepting a v1.0 access token, Azure AD parses the desired audience from the requested scope. This is done by taking everything before the last slash and using it as the resource identifier. As such, if `https://database.windows.net` expects an audience of `https://database.windows.net/`, you'll need to request a scope of `https://database.windows.net//.default` (notice the double slash before ./default). This is illustrated by examples 1 and 2 below. + +### Example 1 + +If you want to acquire tokens for an application accepting v1.0 tokens (for instance the Microsoft Graph API, which is `https://graph.microsoft.com`), you'd need to create `scopes` by concatenating a desired resource identifier with a desired OAuth2 permission for that resource. + +For instance, to access the name of the user via a v1.0 web API whose App ID URI is `ResourceId`, you'd want to use: + +```csharp +var scopes = new [] { ResourceId+"/user_impersonation" }; +``` + +If you want to read and write with MSAL.NET Azure Active Directory using the Microsoft Graph API (`https://graph.microsoft.com/`), you'd create a list of scopes like in the code snippet below: + +```csharp +string ResourceId = "https://graph.microsoft.com/"; +string[] scopes = { ResourceId + "Directory.Read", ResourceId + "Directory.Write" } +``` + +### Example 2 + +If resourceId ends with a '/', you'll need to have a double '/' when writing the scope value. For example, if you want to write the scope corresponding to the Azure Resource Manager API (`https://management.core.windows.net/`), request the following scope (note the two slashes). + +```csharp +var resource = "https://management.core.windows.net/" +var scopes = new[] {"https://management.core.windows.net//user_impersonation"}; +var result = await app.AcquireTokenInteractive(scopes).ExecuteAsync(); + +// then call the API: https://management.azure.com/subscriptions?api-version=2016-09-01 +``` + +This is because the Resource Manager API expects a slash in its audience claim (`aud`), and then there's a slash to separate the API name from the scope. + +If you want to acquire a token for all the static scopes of a v1.0 application, you'd create your scopes list as shown in the code snippet below: + +```csharp +ResourceId = "someAppIDURI"; +var scopes = new [] { ResourceId+"/.default" }; +``` + +For a client credential flow, the scope to pass would also be `/.default`. This scope tells to Azure AD: "all the app-level permissions that the admin has consented to in the application registration. + +## Next steps + +[Migrate your apps from ADAL to MSAL](msal-net-migration.md) +[Migrate your ADAL.NET confidential client apps to use MSAL.NET](msal-net-migration-confidential-client.md) diff --git a/msal-dotnet-articles/how-to/migrate-android-broker.md b/msal-dotnet-articles/how-to/migrate-android-broker.md new file mode 100644 index 000000000..138f42895 --- /dev/null +++ b/msal-dotnet-articles/how-to/migrate-android-broker.md @@ -0,0 +1,140 @@ +--- +title: Migrate Xamarin Android apps using brokers to MSAL.NET +description: Learn how to migrate Xamarin Android apps that use the Microsoft Authenticator or Intune Company Portal from ADAL.NET to MSAL.NET. +author: henrymbuguakiarie +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/31/2020 +ms.author: henrymbugua +ms.reviewer: saeeda +ms.custom: aaddev, has-adal-ref +#Customer intent: As an application developer, I want to learn how to migrate my Xamarin Android applications that use Microsoft Authenticator from ADAL.NET to MSAL.NET. +--- + +# Migrate Android applications that use a broker from ADAL.NET to MSAL.NET + +If you have a Xamarin Android app currently using the Azure Active Directory Authentication Library for .NET (ADAL.NET) and an [authentication broker](msal-android-single-sign-on.md), it's time to migrate to the [Microsoft Authentication Library for .NET ](msal-overview.md) (MSAL.NET). + +## Prerequisites + +* A Xamarin Android app already integrated with a broker ([Microsoft Authenticator](https://play.google.com/store/apps/details?id=com.azure.authenticator) or [Intune Company Portal](https://play.google.com/store/apps/details?id=com.microsoft.windowsintune.companyportal)) and ADAL.NET that you need to migrate to MSAL.NET. + +## Step 1: Enable the broker + + + +
Current ADAL code:MSAL counterpart:
+In ADAL.NET, broker support is enabled on a per-authentication context basis. + +To call the broker, you had to set a `useBroker` to *true* in the `PlatformParameters` constructor: + +```CSharp +public PlatformParameters( + Activity callerActivity, + bool useBroker) +``` + +In the platform-specific page renderer code for Android, you set the `useBroker` flag to true: + +```CSharp +page.BrokerParameters = new PlatformParameters( + this, + true, + PromptBehavior.SelectAccount); +``` + +Then, include the parameters in the acquire token call: + +```CSharp +AuthenticationResult result = + await + AuthContext.AcquireTokenAsync( + Resource, + ClientId, + new Uri(RedirectURI), + platformParameters) + .ConfigureAwait(false); +``` + + +In MSAL.NET, broker support is enabled on a per-PublicClientApplication basis. + +Use the `WithBroker()` parameter (which is set to true by default) to call broker: + +```CSharp +var app = PublicClientApplicationBuilder + .Create(ClientId) + .WithBroker() + .WithRedirectUri(redirectUriOnAndroid) + .Build(); +``` + +Then, in the AcquireToken call: + +```CSharp +result = await app.AcquireTokenInteractive(scopes) + .WithParentActivityOrWindow(App.RootViewController) + .ExecuteAsync(); +``` +
+ +## Step 2: Set an Activity + +In ADAL.NET, you passed in an activity (usually the MainActivity) as part of the PlatformParameters as shown in [Step 1: Enable the broker](#step-1-enable-the-broker). + +MSAL.NET also uses an activity, but it's not required in regular Android usage without a broker. To use the broker, set the activity to send and receive responses from broker. + + + +
Current ADAL code:MSAL counterpart:
+The activity is passed into the PlatformParameters in the Android-specific platform. + +```CSharp +page.BrokerParameters = new PlatformParameters( + this, + true, + PromptBehavior.SelectAccount); +``` + + +In MSAL.NET, do two things to set the activity for Android: + +1. In `MainActivity.cs`, set the `App.RootViewController` to the `MainActivity` to ensure there's an activity with the call to the broker. + + If it's not set correctly, you may get this error: +`"Activity_required_for_android_broker":"Activity is null, so MSAL.NET cannot invoke the Android broker. See https://aka.ms/Brokered-Authentication-for-Android"` + +1. On the AcquireTokenInteractive call, use the `.WithParentActivityOrWindow(App.RootViewController)` + and pass in the reference to the activity you will use. This example will use the MainActivity. + +**For example:** + +In *App.cs*: + +```CSharp + public static object RootViewController { get; set; } +``` + +In *MainActivity.cs*: + +```CSharp + LoadApplication(new App()); + App.RootViewController = this; +``` + +In the AcquireToken call: + +```CSharp +result = await app.AcquireTokenInteractive(scopes) + .WithParentActivityOrWindow(App.RootViewController) + .ExecuteAsync(); +``` +
+ +## Next steps + +For more information about Android-specific considerations when using MSAL.NET with Xamarin, see [Configuration requirements and troubleshooting tips for Xamarin Android with MSAL.NET](msal-net-xamarin-android-considerations.md). \ No newline at end of file diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md new file mode 100644 index 000000000..6bb3314f5 --- /dev/null +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -0,0 +1,551 @@ +--- +title: Migrate confidential client applications to MSAL.NET +description: Learn how to migrate a confidential client application from Azure Active Directory Authentication Library for .NET to Microsoft Authentication Library for .NET. +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky, jmprieur, saeeda, shermanouko +ms.custom: devx-track-csharp, aaddev, has-adal-ref, kr2b-contr-experiment, devx-track-dotnet +#Customer intent: As an application developer, I want to migrate my confidential client app from ADAL.NET to MSAL.NET. +--- + +# Migrate confidential client applications from ADAL.NET to MSAL.NET + +In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](authentication-flows-app-scenarios.md). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](microsoft-identity-web.md). + +For app registrations: + +- You don't need to create a new app registration. (You keep the same client ID.) +- You don't need to change the preauthorizations (admin-consented API permissions). + +## Migration steps + +1. Find the code that uses ADAL.NET in your app. + + The code that uses ADAL in a confidential client app instantiates `AuthenticationContext` and calls either `AcquireTokenByAuthorizationCode` or one override of `AcquireTokenAsync` with the following parameters: + + - A `resourceId` string. This variable is the app ID URI of the web API that you want to call. + - An instance of `IClientAssertionCertificate` or `ClientAssertion`. This instance provides the client credentials for your app to prove the identity of your app. + +1. After you've identified that you have apps that are using ADAL.NET, install the MSAL.NET NuGet package [Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client) and update your project library references. For more information, see [Install a NuGet package](https://www.bing.com/search?q=install+nuget+package). To use token cache serializers, install [Microsoft.Identity.Web.TokenCache](https://www.nuget.org/packages/Microsoft.Identity.Web.TokenCache). + +1. Update the code according to the confidential client scenario. Some steps are common and apply across all the confidential client scenarios. Other steps are unique to each scenario. + + Confidential client scenarios: + + - [Daemon scenarios](?tabs=daemon#migrate-daemon-apps) supported by web apps, web APIs, and daemon console applications. + - [Web API calling downstream web APIs](?tabs=obo#migrate-a-web-api-that-calls-downstream-web-apis) supported by web APIs calling downstream web APIs on behalf of the user. + - [Web app calling web APIs](?tabs=authcode#migrate-a-web-api-that-calls-downstream-web-apis) supported by web apps that sign in users and call a downstream web API. + +You might have provided a wrapper around ADAL.NET to handle certificates and caching. This guide uses the same approach to illustrate the process of migrating from ADAL.NET to MSAL.NET. However, this code is only for demonstration purposes. Don't copy/paste these wrappers or integrate them in your code as they are. + +## [Daemon](#tab/daemon) + +### Migrate daemon apps + +Daemon scenarios use the OAuth2.0 [client credential flow](v2-oauth2-client-creds-grant-flow.md). They're also called service-to-service calls. Your app acquires a token on its own behalf, not on behalf of a user. + +#### Find out if your code uses daemon scenarios + +The ADAL code for your app uses daemon scenarios if it contains a call to `AuthenticationContext.AcquireTokenAsync` with the following parameters: + +- A resource (app ID URI) as a first parameter +- `IClientAssertionCertificate` or `ClientAssertion` as the second parameter + +`AuthenticationContext.AcquireTokenAsync` doesn't have a parameter of type `UserAssertion`. If it does, then your app is a web API, and it uses the [web API calling downstream web APIs](?tabs=obo#migrate-a-web-api-that-calls-downstream-web-apis) scenario. + +#### Update the code of daemon scenarios + +[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] + +In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenClient`. + +Here's a comparison of ADAL.NET and MSAL.NET code for daemon scenarios: + +:::row::: +:::column span=""::: + ADAL +:::column-end::: +:::column span=""::: + MSAL +:::column-end::: +:::row-end::: +:::row::: +:::column span=""::: + +```csharp +using Microsoft.IdentityModel.Clients.ActiveDirectory; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (AppID)"; + const string authority + = "https://login.microsoftonline.com/{tenant}"; + // App ID URI of web API to call + const string resourceId = "https://target-api.domain.com"; + X509Certificate2 certificate = LoadCertificate(); + + + + public async Task GetAuthenticationResult() + { + + + var authContext = new AuthenticationContext(authority); + var clientAssertionCert = new ClientAssertionCertificate( + ClientId, + certificate); + + + var authResult = await authContext.AcquireTokenAsync( + resourceId, + clientAssertionCert, + ); + + return authResult; + } +} +``` +:::column-end::: +:::column span=""::: +```csharp +using Microsoft.Identity.Client; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (Application ID)"; + const string authority + = "https://login.microsoftonline.com/{tenant}"; + // App ID URI of web API to call + const string resourceId = "https://target-api.domain.com"; + X509Certificate2 certificate = LoadCertificate(); + + IConfidentialClientApplication app; + + public async Task GetAuthenticationResult() + { + + var app = ConfidentialClientApplicationBuilder.Create(ClientId) + .WithCertificate(certificate) + .WithAuthority(authority) + .Build(); + + // Setup token caching https://learn.microsoft.com/azure/active-directory/develop/msal-net-token-cache-serialization?tabs=aspnet + // For example, for an in-memory cache with 1GB limit, use + app.AddInMemoryTokenCache(services => + { + // Configure the memory cache options + services.Configure(options => + { + options.SizeLimit = 1024 * 1024 * 1024; // in bytes (1 GB of memory) + }); + } + + var authResult = await app.AcquireTokenForClient( + new [] { $"{resourceId}/.default" }) + // .WithTenantId(specificTenant) + // See https://aka.ms/msal.net/withTenantId + .ExecuteAsync() + .ConfigureAwait(false); + + return authResult; + } +} +``` + :::column-end::: +:::row-end::: + +#### Benefit from token caching + +If you don't setup token caching, the token issuer will throttle you, resulting in errors. It also takes a lot less to get a token from the cache (10-20ms) than it is from ESTS (500-30000ms). + +If you want to implement a distributed token cache, see [Token cache for a web app or web API (confidential client application)](msal-net-token-cache-serialization.md?tabs=aspnet) and the sample [active-directory-dotnet-v1-to-v2/ConfidentialClientTokenCache](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). + +[Learn more about the daemon scenario](scenario-daemon-overview.md) and how it's implemented with MSAL.NET or Microsoft.Identity.Web in new applications. + +## [Web API calling downstream web APIs](#tab/obo) + +### Migrate a web API that calls downstream web APIs + +Web APIs that call downstream web APIs use the OAuth2.0 [on-behalf-of (OBO)](v2-oauth2-on-behalf-of-flow.md) flow. The web API uses the access token retrieved from the HTTP **Authorize** header and it validates this token. This token is then exchanged against a token to call the downstream web API. This token is used as a `UserAssertion` instance in both ADAL.NET and MSAL.NET. + +#### Find out if your code uses OBO + +The ADAL code for your app uses OBO if it contains a call to `AuthenticationContext.AcquireTokenAsync` with the following parameters: + +- A resource (app ID URI) as a first parameter +- `IClientAssertionCertificate` or `ClientAssertion` as the second parameter +- A parameter of type `UserAssertion` + +#### Update the code by using OBO + +[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] + +In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenOnBehalfOf`. + +Here's a comparison of sample OBO code for ADAL.NET and MSAL.NET: + +:::row::: + :::column span=""::: + ADAL + :::column-end::: + :::column span=""::: + MSAL + :::column-end::: +:::row-end::: +:::row::: +:::column span=""::: +```csharp +using Microsoft.IdentityModel.Clients.ActiveDirectory; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (AppID)"; + const string authority + = "https://login.microsoftonline.com/common"; + X509Certificate2 certificate = LoadCertificate(); + + + + public async Task GetAuthenticationResult( + string resourceId, + string tokenUsedToCallTheWebApi) + { + + + var authContext = new AuthenticationContext(authority); + var clientAssertionCert = new ClientAssertionCertificate( + ClientId, + certificate); + + + + var userAssertion = new UserAssertion(tokenUsedToCallTheWebApi); + + var authResult = await authContext.AcquireTokenAsync( + resourceId, + clientAssertionCert, + userAssertion, + ); + + return authResult; + } +} +``` +:::column-end::: +:::column span=""::: +```csharp +using Microsoft.Identity.Client; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (Application ID)"; + const string authority + = "https://login.microsoftonline.com/common"; + X509Certificate2 certificate = LoadCertificate(); + + IConfidentialClientApplication app; + + public async Task GetAuthenticationResult( + string resourceId, + string tokenUsedToCallTheWebApi) + { + + var app = ConfidentialClientApplicationBuilder.Create(ClientId) + .WithCertificate(certificate) + .WithAuthority(authority) + .Build(); + + // Setup token caching https://learn.microsoft.com/azure/active-directory/develop/msal-net-token-cache-serialization?tabs=aspnet + // For example, for an in-memory cache with 1GB limit. For OBO, it is recommended to use a distributed cache like Redis. + app.AddInMemoryTokenCache(services => + { + // Configure the memory cache options + services.Configure(options => + { + options.SizeLimit = 1024 * 1024 * 1024; // in bytes (1 GB of memory) + }); + } + + var userAssertion = new UserAssertion(tokenUsedToCallTheWebApi); + + var authResult = await app.AcquireTokenOnBehalfOf( + new string[] { $"{resourceId}/.default" }, + userAssertion) + // .WithTenantId(specificTenant) + // See https://aka.ms/msal.net/withTenantId + .ExecuteAsync() + .ConfigureAwait(false); + + return authResult; + } +} +``` +:::column-end::: +:::row-end::: + +#### Benefit from token caching + +For token caching in OBOs, use a distributed token cache. For details, see [Token cache for a web app or web API (confidential client app)](msal-net-token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). + +```CSharp +app.UseInMemoryTokenCaches(); // or a distributed token cache. +``` + +[Learn more about web APIs calling downstream web APIs](scenario-web-api-call-api-overview.md) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new apps. + +## [Web app calling web APIs](#tab/authcode) + +### Migrate a web app that calls web APIs + +If your app uses ASP.NET Core, we strongly recommend that you update to Microsoft.Identity.Web because it processes everything for you. For a quick presentation, see the [Microsoft.Identity.Web announcement of general availability](https://github.com/AzureAD/microsoft-identity-web/wiki/1.0.0). For details about how to use it in a web app, see [Why use Microsoft.Identity.Web in web apps?](https://aka.ms/ms-id-web/webapp). + +Web apps that sign in users and call web APIs on behalf of users employ the OAuth2.0 [authorization code flow](v2-oauth2-auth-code-flow.md). Typically: + +1. The app signs in a user by executing a first leg of the authorization code flow by going to the Microsoft identity platform authorize endpoint. The user signs in and performs multi-factor authentications if needed. As an outcome of this operation, the app receives the authorization code. The authentication library isn't used at this stage. +1. The app executes the second leg of the authorization code flow. It uses the authorization code to get an access token, an ID token, and a refresh token. Your application needs to provide the `redirectUri` value, which is the URI where the Microsoft identity platform endpoint will provide the security tokens. After the app receives that URI, it typically calls `AcquireTokenByAuthorizationCode` for ADAL or MSAL to redeem the code and to get a token that will be stored in the token cache. +1. The app uses ADAL or MSAL to call `AcquireTokenSilent` to get tokens for calling the necessary web APIs from the web app controllers. + +#### Find out if your code uses the auth code flow + +The ADAL code for your app uses auth code flow if it contains a call to `AuthenticationContext.AcquireTokenByAuthorizationCodeAsync`. + +#### Update the code by using the authorization code flow + +[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] + +In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenByAuthorizationCode`. + +Here's a comparison of sample authorization code flows for ADAL.NET and MSAL.NET: + +:::row::: + :::column span=""::: + ADAL + :::column-end::: + :::column span=""::: + MSAL + :::column-end::: +:::row-end::: +:::row::: + :::column span=""::: +```csharp +using Microsoft.IdentityModel.Clients.ActiveDirectory; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (AppID)"; + const string authority + = "https://login.microsoftonline.com/common"; + private Uri redirectUri = new Uri("host/login_oidc"); + X509Certificate2 certificate = LoadCertificate(); + + + + public async Task GetAuthenticationResult( + string resourceId, + string authorizationCode) + { + + + var ac = new AuthenticationContext(authority); + var clientAssertionCert = new ClientAssertionCertificate( + ClientId, + certificate); + + + + var authResult = await ac.AcquireTokenByAuthorizationCodeAsync( + authorizationCode, + redirectUri, + clientAssertionCert, + resourceId, + ); + return authResult; + } +} +``` + :::column-end::: + :::column span=""::: +```csharp +using Microsoft.Identity.Client; +using Microsoft.Identity.Web; +using System; +using System.Security.Claims; +using System.Security.Cryptography.X509Certificates; +using System.Threading.Tasks; + +public partial class AuthWrapper +{ + const string ClientId = "Guid (Application ID)"; + const string authority + = "https://login.microsoftonline.com/{tenant}"; + private Uri redirectUri = new Uri("host/login_oidc"); + X509Certificate2 certificate = LoadCertificate(); + + public IConfidentialClientApplication CreateApplication() + { + IConfidentialClientApplication app; + + app = ConfidentialClientApplicationBuilder.Create(ClientId) + .WithCertificate(certificate) + .WithAuthority(authority) + .WithRedirectUri(redirectUri.ToString()) + .WithLegacyCacheCompatibility(false) + .Build(); + + // Add a token cache. For details about other serialization + // see https://aka.ms/msal-net-cca-token-cache-serialization + app.AddInMemoryTokenCache(); + + return app; + } + + // Called from 'code received event'. + public async Task GetAuthenticationResult( + string resourceId, + string authorizationCode) + { + IConfidentialClientApplication app = CreateApplication(); + + var authResult = await app.AcquireTokenByAuthorizationCode( + new[] { $"{resourceId}/.default" }, + authorizationCode) + .ExecuteAsync() + .ConfigureAwait(false); + + return authResult; + } +} +``` + :::column-end::: +:::row-end::: + +Calling `AcquireTokenByAuthorizationCode` adds a token to the token cache when the authorization code is received. To acquire extra tokens for other resources or tenants, use `AcquireTokenSilent` in your controllers. + +```csharp +public partial class AuthWrapper +{ + // Called from controllers + public async Task GetAuthenticationResult( + string resourceId2, + string authority) + { + IConfidentialClientApplication app = CreateApplication(); + AuthenticationResult authResult; + + var scopes = new[] { $"{resourceId2}/.default" }; + var account = await app.GetAccountAsync(ClaimsPrincipal.Current.GetMsalAccountId()); + + try + { + // try to get an already cached token + authResult = await app.AcquireTokenSilent( + scopes, + account) + // .WithTenantId(specificTenantId) + // See https://aka.ms/msal.net/withTenantId + .ExecuteAsync().ConfigureAwait(false); + } + catch (MsalUiRequiredException) + { + // The controller will need to challenge the user + // including asking for claims={ex.Claims} + throw; + } + return authResult; + } +} +``` + +#### Benefit from token caching + +Because your web app uses `AcquireTokenByAuthorizationCode`, it needs to use a distributed token cache for token caching. For details, see [Token cache for a web app or web API](msal-net-token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). + + +```CSharp +app.UseInMemoryTokenCaches(); // or a distributed token cache. +``` + +#### Handling MsalUiRequiredException + +When your controller attempts to acquire a token silently for different +scopes/resources, MSAL.NET might throw an `MsalUiRequiredException` as expected if the user needs to re-sign-in, or if the +access to the resource requires more claims (because of a Conditional Access +policy). For details on mitigation see how to [Handle errors and exceptions in MSAL.NET](msal-error-handling-dotnet.md). + +[Learn more about web apps calling web APIs](scenario-web-app-call-api-overview.md) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new applications. + +--- + +## MSAL benefits + +Key benefits of MSAL.NET for your app include: + +- **Resilience**. MSAL.NET helps make your app resilient through: + + - Azure AD Cached Credential Service (CCS) benefits. CCS operates as an Azure AD backup. + - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](app-resilience-continuous-access-evaluation.md). + +- **Security**. You can acquire Proof of Possession (PoP) tokens if the web API that you want to call requires it. For details, see [Proof Of Possession tokens in MSAL.NET](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Proof-Of-Possession-(PoP)-tokens) + +- **Performance and scalability**. If you don't need to share your cache with ADAL.NET, disable the legacy cache compatibility when you're creating the confidential client application (`.WithLegacyCacheCompatibility(false)`) to significantly increase performance. + + ```csharp + app = ConfidentialClientApplicationBuilder.Create(ClientId) + .WithCertificate(certificate) + .WithAuthority(authority) + .WithLegacyCacheCompatibility(false) + .Build(); + ``` + +## Troubleshooting + +### MsalServiceException + +The following troubleshooting information makes two assumptions: + +- Your ADAL.NET code was working. +- You migrated to MSAL by keeping the same client ID. + +If you get an exception with either of the following messages: + +> `AADSTS700027: Client assertion contains an invalid signature. [Reason - The key was not found.]` + +> `AADSTS90002: Tenant 'cf61953b-e41a-46b3-b500-663d279ea744' not found. This may happen if there are no active` +> `subscriptions for the tenant. Check to make sure you have the correct tenant ID. Check with your subscription` +> `administrator.` + +Troubleshoot the exception using these steps: + +1. Confirm that you're using the latest version of [MSAL.NET](https://www.nuget.org/packages/Microsoft.Identity.Client/). +1. Confirm that the authority host that you set when building the confidential client app and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](msal-national-cloud.md) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? + +### MsalClientException + +In multi-tenant apps, specify a common authority when building the app to target a specific tenant such as, the tenant of the user when calling a web API. Since MSAL.NET 4.37.0, when you specify `.WithAzureRegion` at the app creation, you can no longer specify the Authority using `.WithAuthority` during the token requests. If you do, you'll get the following error when updating from previous versions of MSAL.NET: + + `MsalClientException - "You configured WithAuthority at the request level, and also WithAzureRegion. This is not supported when the environment changes from application to request. Use WithTenantId at the request level instead."` + +To remediate this issue, replace `.WithAuthority` on the AcquireTokenXXX expression by `.WithTenantId`. Specify the tenant using either a GUID or a domain name. + +## Next steps + +Learn more about: +- [differences between ADAL.NET and MSAL.NET apps](msal-net-differences-adal-net.md). +- [token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md) diff --git a/msal-dotnet-articles/how-to/migrate-ios-broker.md b/msal-dotnet-articles/how-to/migrate-ios-broker.md new file mode 100644 index 000000000..8d87faaa9 --- /dev/null +++ b/msal-dotnet-articles/how-to/migrate-ios-broker.md @@ -0,0 +1,263 @@ +--- +title: Migrate Xamarin apps using brokers to MSAL.NET +description: Learn how to migrate Xamarin iOS apps that use Microsoft Authenticator from ADAL.NET to MSAL.NET. +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 09/08/2019 +ms.author: dmwendia +ms.reviewer: jmprieur, saeeda +ms.custom: "devx-track-csharp, aaddev, has-adal-ref" +#Customer intent: As an application developer, I want to learn how to migrate my iOS applications that use Microsoft Authenticator from ADAL.NET to MSAL.NET. +--- + +# Migrate iOS applications that use Microsoft Authenticator from ADAL.NET to MSAL.NET + +You've been using the Azure Active Directory Authentication Library for .NET (ADAL.NET) and the iOS broker. Now it's time to migrate to the [Microsoft Authentication Library](/entra/msal) for .NET (MSAL.NET), which supports the broker on iOS from release 4.3 onward. + +Where should you start? This article helps you migrate your Xamarin iOS app from ADAL to MSAL. + +## Prerequisites + +This article assumes that you already have a Xamarin iOS app that's integrated with the iOS broker. If you don't, move directly to MSAL.NET and begin the broker implementation there. For information on how to invoke the iOS broker in MSAL.NET with a new application, see [this documentation](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Leveraging-the-broker-on-iOS#why-use-brokers-on-xamarinios-and-xamarinandroid-applications). + +## Background + +### What are brokers? + +Brokers are applications provided by Microsoft on Android and iOS. (See the [Microsoft Authenticator](https://www.microsoft.com/p/microsoft-authenticator/9nblgggzmcj6) app on iOS and Android, and the Intune Company Portal app on Android.) + +They enable: + +- Single sign-on. +- Device identification, which is required by some [Conditional Access policies](../conditional-access/overview.md). For more information, see [Device management](../conditional-access/concept-conditional-access-conditions.md#device-platforms). +- Application identification verification, which is also required in some enterprise scenarios. For more information, see [Intune mobile application management (MAM)](/intune/mam-faq). + +## Migrate from ADAL to MSAL + +### Step 1: Enable the broker + + + +
Current ADAL code:MSAL counterpart:
+In ADAL.NET, broker support was enabled on a per-authentication context basis. It's disabled by default. You had to set a + +`useBroker` flag to true in the `PlatformParameters` constructor to call the broker: + +```csharp +public PlatformParameters( + UIViewController callerViewController, + bool useBroker) +``` +Also, in the platform-specific code, in this example, in the page renderer for iOS, set the +`useBroker` +flag to true: +```csharp +page.BrokerParameters = new PlatformParameters( + this, + true, + PromptBehavior.SelectAccount); +``` + +Then, include the parameters in the acquire token call: +```csharp + AuthenticationResult result = + await + AuthContext.AcquireTokenAsync( + Resource, + ClientId, + new Uri(RedirectURI), + platformParameters) + .ConfigureAwait(false); +``` + + +In MSAL.NET, broker support is enabled on a per-PublicClientApplication basis. It's disabled by default. To enable it, use the + +`WithBroker()` +parameter (set to true by default) in order to call the broker: + +```csharp +var app = PublicClientApplicationBuilder + .Create(ClientId) + .WithBroker() + .WithReplyUri(redirectUriOnIos) + .Build(); +``` +In the acquire token call: +```csharp +result = await app.AcquireTokenInteractive(scopes) + .WithParentActivityOrWindow(App.RootViewController) + .ExecuteAsync(); +``` +
+ +### Step 2: Set a UIViewController() +In ADAL.NET, you passed in a UIViewController as part of `PlatformParameters`. (See the example in Step 1.) In MSAL.NET, to give developers more flexibility, an object window is used, but it's not required in regular iOS usage. To use the broker, set the object window in order to send and receive responses from the broker. + + +
Current ADAL code:MSAL counterpart:
+A UIViewController is passed into + +`PlatformParameters` in the iOS-specific platform. + +```csharp +page.BrokerParameters = new PlatformParameters( + this, + true, + PromptBehavior.SelectAccount); +``` + +In MSAL.NET, you do two things to set the object window for iOS: + +1. In `AppDelegate.cs`, set `App.RootViewController` to a new `UIViewController()`. +This assignment ensures that there's a UIViewController with the call to the broker. If it isn't set correctly, you might get this error: +`"uiviewcontroller_required_for_ios_broker":"UIViewController is null, so MSAL.NET cannot invoke the iOS broker. See https://aka.ms/msal-net-ios-broker"` +1. On the AcquireTokenInteractive call, use +`.WithParentActivityOrWindow(App.RootViewController)`, + and pass in the reference to the object window you'll use. + +**For example:** + +In `App.cs`: +```csharp + public static object RootViewController { get; set; } +``` +In `AppDelegate.cs`: +```csharp + LoadApplication(new App()); + App.RootViewController = new UIViewController(); +``` +In the acquire token call: +```csharp +result = await app.AcquireTokenInteractive(scopes) + .WithParentActivityOrWindow(App.RootViewController) + .ExecuteAsync(); +``` + +
+ +### Step 3: Update AppDelegate to handle the callback +Both ADAL and MSAL call the broker, and the broker in turn calls back to your application through the `OpenUrl` method of the `AppDelegate` class. For more information, see [this documentation](msal-net-use-brokers-with-xamarin-apps.md#step-3-update-appdelegate-to-handle-the-callback). + +There are no changes here between ADAL.NET and MSAL.NET. + +### Step 4: Register a URL scheme +ADAL.NET and MSAL.NET use URLs to invoke the broker and return the broker response back to the app. Register the URL scheme in the `Info.plist` file for your app as follows: + + + +
Current ADAL code:MSAL counterpart:
+The URL scheme is unique to your app. + +The + +`CFBundleURLSchemes` +name must include + +`msauth.` + +as a prefix, followed by your +`CFBundleURLName` + +For example: +`$"msauth.(BundleId")` + +```csharp + CFBundleURLTypes + + + CFBundleTypeRole + Editor + CFBundleURLName + com.yourcompany.xforms + CFBundleURLSchemes + + msauth.com.yourcompany.xforms + + + +``` + +> [!NOTE] +> This URL scheme becomes part of the redirect URI that's used to uniquely identify the app when it receives the response from the broker. + +
+ +### Step 5: Add the broker identifier to the LSApplicationQueriesSchemes section + +ADAL.NET and MSAL.NET both use `-canOpenURL:` to check if the broker is installed on the device. Add the correct identifier for the iOS broker to the LSApplicationQueriesSchemes section of the info.plist file as follows: + + + +
Current ADAL code:MSAL counterpart:
+Uses + +`msauth` + + +```csharp +LSApplicationQueriesSchemes + + msauth + +``` + +Uses + +`msauthv2` + + +```csharp +LSApplicationQueriesSchemes + + msauthv2 + msauthv3 + +``` +
+ +### Step 6: Register your redirect URI in the Azure portal + +ADAL.NET and MSAL.NET both add an extra requirement on the redirect URI when it targets the broker. Register the redirect URI with your application in the Azure portal. + + +
Current ADAL code:MSAL counterpart:
+ +`"://"` + +Example: + +`mytestiosapp://com.mycompany.myapp` + + +`$"msauth.{BundleId}://auth"` + +Example: + +`public static string redirectUriOnIos = "msauth.com.yourcompany.XForms://auth"; ` + +
+ +For more information about how to register the redirect URI in the Azure portal, see [Step 7: Add a redirect URI to your app registration](msal-net-use-brokers-with-xamarin-apps.md#step-7-add-a-redirect-uri-to-your-app-registration). + +### **Step 7: Set the Entitlements.plist** + +Enable keychain access in the *Entitlements.plist* file: + +```xml + keychain-access-groups + + $(AppIdentifierPrefix)com.microsoft.adalcache + +``` + +For more information about enabling keychain access, see [Enable keychain access](msal-net-xamarin-ios-considerations.md#enable-keychain-access). + +## Next steps + +Learn about [Xamarin iOS-specific considerations with MSAL.NET](msal-net-xamarin-ios-considerations.md). \ No newline at end of file diff --git a/msal-dotnet-articles/how-to/migrate-public-client.md b/msal-dotnet-articles/how-to/migrate-public-client.md new file mode 100644 index 000000000..5dfa19952 --- /dev/null +++ b/msal-dotnet-articles/how-to/migrate-public-client.md @@ -0,0 +1,496 @@ +--- +title: Migrate public client applications to MSAL.NET +description: Learn how to migrate a public client application from Azure Active Directory Authentication Library for .NET to Microsoft Authentication Library for .NET. +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: how-to +ms.workload: identity +ms.date: 08/31/2021 +ms.author: dmwendia +ms.reviewer: celested, saeeda, shermanouko, jmprieur +ms.custom: devx-track-csharp, aaddev, has-adal-ref, devx-track-dotnet +#Customer intent: As an application developer, I want to migrate my public client app from ADAL.NET to MSAL.NET. +--- + +# Migrate public client applications from ADAL.NET to MSAL.NET + +This article describes how to migrate a public client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Public client applications are desktop apps, including Win32, WPF, and UWP apps, and mobile apps, that call another service on the user's behalf. For more information about public client applications, see [Authentication flows and application scenarios](authentication-flows-app-scenarios.md). + +## Migration steps + +1. Find the code by using ADAL.NET in your app. + + The code that uses ADAL in a public client application instantiates `AuthenticationContext` and calls an override of `AcquireTokenAsync` with the following parameters: + + - A `resourceId` string. This variable is the app ID URI of the web API that you want to call. + - A `clientId` which is the identifier for your application, also known as App ID. + +2. After you've identified that you have apps that are using ADAL.NET, install the MSAL.NET NuGet package [Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client) and update your project library references. For more information, see [Install a NuGet package](https://www.bing.com/search?q=install+nuget+package). + +3. Update the code according to the public client application scenario. Some steps are common and apply across all the public client scenarios. Other steps are unique to each scenario. + + The public client scenarios are: + + - [Web Authentication Manager](scenario-desktop-acquire-token-wam.md) the preferred broker-based authentication on Windows. + - [Interactive authentication](scenario-desktop-acquire-token-interactive.md) where the user is shown a web-based interface to complete the sign-in process. + - [Integrated Windows authentication](scenario-desktop-acquire-token-integrated-windows-authentication.md) where a user signs using the same identity they used to sign into a Windows domain (for domain-joined or Azure AD-joined machines). + - [Username/password](scenario-desktop-acquire-token-username-password.md) where the sign-in occurs by providing a username/password credential. + - [Device code flow](scenario-desktop-acquire-token-device-code-flow.md) where a device of limited UX shows you a device code to complete the authentication flow on an alternate device. + + +## [Interactive](#tab/interactive) + +Interactive scenarios are where your public client application shows a login user interface hosted in a browser, and the user is required to interactively sign-in. + +#### Find out if your code uses interactive scenarios + +The ADAL code for your app in a public client application that uses interactive authentication instantiates `AuthenticationContext` and includes a call to `AcquireTokenAsync`, with the following parameters. + - A `clientId` which is a GUID representing your application registration + - A `resourceUrl` which indicates the resource you are asking the token for + - A URI that is the reply URL + - A `PlatformParameters` object. + + #### Update the code for interactive scenarios + + [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + +In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenInteractive`. + +Here's a comparison of ADAL.NET and MSAL.NET code for interactive scenarios: + +:::row::: +:::column span=""::: + ADAL +:::column-end::: +:::column span=""::: + MSAL +:::column-end::: +:::row-end::: +:::row::: +:::column span=""::: + +```csharp +var ac = new AuthenticationContext("https://login.microsoftonline.com/"); +AuthenticationResult result; +result = await ac.AcquireTokenAsync("", + "https://resourceUrl", + new Uri("https://ClientReplyUrl"), + new PlatformParameters(PromptBehavior.Auto)); +``` +:::column-end::: +:::column span=""::: +```csharp +// 1. Configuration - read below about redirect URI +var pca = PublicClientApplicationBuilder.Create("client_id") + .WithBroker() + .Build(); + +// Add a token cache, see https://learn.microsoft.com/azure/active-directory/develop/msal-net-token-cache-serialization?tabs=desktop + +// 2. GetAccounts +var accounts = await pca.GetAccountsAsync(); +var accountToLogin = // choose an account, or null, or use PublicClientApplication.OperatingSystemAccount for the default OS account + +try +{ + // 3. AcquireTokenSilent + var authResult = await pca.AcquireTokenSilent(new[] { "User.Read" }, accountToLogin) + .ExecuteAsync(); +} +catch (MsalUiRequiredException) // no change in the pattern +{ + // 4. Specific: Switch to the UI thread for next call . Not required for console apps. + await SwitchToUiThreadAsync(); // not actual code, this is different on each platform / tech + + // 5. AcquireTokenInteractive + var authResult = await pca.AcquireTokenInteractive(new[] { "User.Read" }) + .WithAccount(accountToLogin) // this already exists in MSAL, but it is more important for WAM + .WithParentActivityOrWindow(myWindowHandle) // to be able to parent WAM's windows to your app (optional, but highly recommended; not needed on UWP) + .ExecuteAsync(); +} +``` + :::column-end::: +:::row-end::: + +The MSAL code shown above uses WAM (Web authentication manager) which is the recommended approach. If you wish to use interactive authentication without WAM, see [Interactive Authentication](scenario-desktop-acquire-token-interactive.md). + +## [Integrated Windows authentication](#tab/iwa) + +Integrated Windows authentication is where your public client application signs in using the same identity they used to sign into a Windows domain (for domain-joined or Azure AD-joined machines). + +#### Find out if your code uses integrated Windows authentication + +The ADAL code for your app uses integrated Windows authentication scenarios if it contains a call to `AcquireTokenAsync` available as an extension method of the `AuthenticationContextIntegratedAuthExtensions` class, with the following parameters: + +- A `resource` which represents the resource you are asking the token for +- A `clientId` which is a GUID representing your application registration +- A `UserCredential` object that represents the user you are trying to request the token for. + +#### Update the code for integrated Windows authentication scenarios + + [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + +In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenByIntegratedWindowsAuth`. + +Here's a comparison of ADAL.NET and MSAL.NET code for integrated Windows authentication scenarios: + +:::row::: +:::column span=""::: + ADAL +:::column-end::: +:::column span=""::: + MSAL +:::column-end::: +:::row-end::: +:::row::: +:::column span=""::: + +```csharp +var ac = new AuthenticationContext("https://login.microsoftonline.com/"); +AuthenticationResult result; +result = await context.AcquireTokenAsync(resource, clientId, + new UserCredential("john@contoso.com")); +``` +:::column-end::: +:::column span=""::: +```csharp + string authority = "https://login.microsoftonline.com/contoso.com"; + string[] scopes = new string[] { "user.read" }; + IPublicClientApplication app = PublicClientApplicationBuilder + .Create(clientId) + .WithAuthority(authority) + .Build(); + + var accounts = await app.GetAccountsAsync(); + + AuthenticationResult result = null; + if (accounts.Any()) + { + result = await app.AcquireTokenSilent(scopes, accounts.FirstOrDefault()) + .ExecuteAsync(); + } + else + { + try + { + result = await app.AcquireTokenByIntegratedWindowsAuth(scopes) + .ExecuteAsync(CancellationToken.None); + } + catch (MsalUiRequiredException ex) + { + // MsalUiRequiredException: AADSTS65001: The user or administrator has not consented to use the application + // with ID '{appId}' named '{appName}'.Send an interactive authorization request for this user and resource. + + // you need to get user consent first. This can be done, if you are not using .NET Core (which does not have any Web UI) + // by doing (once only) an AcquireToken interactive. + + // If you are using .NET core or don't want to do an AcquireTokenInteractive, you might want to suggest the user to navigate + // to a URL to consent: https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id={clientId}&response_type=code&scope=user.read + + // AADSTS50079: The user is required to use multi-factor authentication. + // There is no mitigation - if MFA is configured for your tenant and Azure AD decides to enforce it, + // you need to fallback to an interactive flows such as AcquireTokenInteractive or AcquireTokenByDeviceCode + } + catch (MsalServiceException ex) + { + // Kind of errors you could have (in ex.Message) + + // MsalServiceException: AADSTS90010: The grant type is not supported over the /common or /consumers endpoints. Please use the /organizations or tenant-specific endpoint. + // you used common. + // Mitigation: as explained in the message from Azure AD, the authority needs to be tenanted or otherwise organizations + + // MsalServiceException: AADSTS70002: The request body must contain the following parameter: 'client_secret or client_assertion'. + // Explanation: this can happen if your application was not registered as a public client application in Azure AD + // Mitigation: in the Azure portal, edit the manifest for your application and set the `allowPublicClient` to `true` + } + catch (MsalClientException ex) + { + // Error Code: unknown_user Message: Could not identify logged in user + // Explanation: the library was unable to query the current Windows logged-in user or this user is not AD or Azure AD + // joined (work-place joined users are not supported). + + // Mitigation 1: on UWP, check that the application has the following capabilities: Enterprise Authentication, + // Private Networks (Client and Server), User Account Information + + // Mitigation 2: Implement your own logic to fetch the username (e.g. john@contoso.com) and use the + // AcquireTokenByIntegratedWindowsAuth form that takes in the username + + // Error Code: integrated_windows_auth_not_supported_managed_user + // Explanation: This method relies on a protocol exposed by Active Directory (AD). If a user was created in Azure + // Active Directory without AD backing ("managed" user), this method will fail. Users created in AD and backed by + // Azure AD ("federated" users) can benefit from this non-interactive method of authentication. + // Mitigation: Use interactive authentication + } + } + + Console.WriteLine(result.Account.Username); +} +``` + :::column-end::: +:::row-end::: + +## [Username Password](#tab/up) + +Username Password authentication is where the sign-in occurs by providing a username/password credential. +#### Find out if your code uses Username Password authentication + +The ADAL code for your app uses Username password authentication scenarios if it contains a call to `AcquireTokenAsync` available as an extension method of the `AuthenticationContextIntegratedAuthExtensions` class, with the following parameters: + +- A `resource` which represents the resource you are asking the token for +- A `clientId` which is a GUID representing your application registration +- A `UserPasswordCredential` object that contains the username and password for the user you are trying to request the token for. + +#### Update the code for username password auth scenarios + +In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenByUsernamePassword`. + +Here's a comparison of ADAL.NET and MSAL.NET code for username password scenarios: + + [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + +:::row::: +:::column span=""::: + ADAL +:::column-end::: +:::column span=""::: + MSAL +:::column-end::: +:::row-end::: +:::row::: +:::column span=""::: + +```csharp +var ac = new AuthenticationContext("https://login.microsoftonline.com/"); +AuthenticationResult result; +result = await context.AcquireTokenAsync( + resource, clientId, + new UserPasswordCredential("john@contoso.com", johnsPassword)); + +``` +:::column-end::: +:::column span=""::: +```csharp + string authority = "https://login.microsoftonline.com/contoso.com"; + string[] scopes = new string[] { "user.read" }; + IPublicClientApplication app; + app = PublicClientApplicationBuilder.Create(clientId) + .WithAuthority(authority) + .Build(); + var accounts = await app.GetAccountsAsync(); + + AuthenticationResult result = null; + if (accounts.Any()) + { + result = await app.AcquireTokenSilent(scopes, accounts.FirstOrDefault()) + .ExecuteAsync(); + } + else + { + try + { + var securePassword = new SecureString(); + foreach (char c in "dummy") // you should fetch the password + securePassword.AppendChar(c); // keystroke by keystroke + + result = await app.AcquireTokenByUsernamePassword(scopes, + "joe@contoso.com", + securePassword) + .ExecuteAsync(); + } + catch(MsalException) + { + // See details below + } + } + Console.WriteLine(result.Account.Username); +``` + :::column-end::: +:::row-end::: + +## [Device Code](#tab/devicecode) + +Device code flow authentication is where a device of limited UX shows you a device code to complete the authentication flow on an alternate device. + +#### Find out if your code uses Device code flow authentication + +The ADAL code for your app uses device code flow scenarios if it contains a call to `AuthenticationContext.AcquireTokenByDeviceCodeAsync` with the following parameters: +- A `DeviceCodeResult` object instance, which is instantiated with the `resourceID` of the resource you are asking for a token for, and a `clientId` which is the GUID that represents your application. + +#### Update the code for device code flow scenarios + + [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + +In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenWithDeviceCode`. + +Here's a comparison of ADAL.NET and MSAL.NET code for device code flow scenarios: + +:::row::: +:::column span=""::: + ADAL +:::column-end::: +:::column span=""::: + MSAL +:::column-end::: +:::row-end::: +:::row::: +:::column span=""::: + +```csharp +static async Task GetTokenViaCode(AuthenticationContext ctx) +{ + AuthenticationResult result = null; + try + { + result = await ac.AcquireTokenSilentAsync(resource, clientId); + } + catch (AdalException adalException) + { + if (adalException.ErrorCode == AdalError.FailedToAcquireTokenSilently + || adalException.ErrorCode == AdalError.InteractionRequired) + { + try + { + DeviceCodeResult codeResult = await ctx.AcquireDeviceCodeAsync(resource, clientId); + Console.WriteLine("You need to sign in."); + Console.WriteLine("Message: " + codeResult.Message + "\n"); + result = await ctx.AcquireTokenByDeviceCodeAsync(codeResult); + } + catch (Exception exc) + { + Console.WriteLine("Something went wrong."); + Console.WriteLine("Message: " + exc.Message + "\n"); + } + } + return result; +} + +``` +:::column-end::: +:::column span=""::: +```csharp +private const string ClientId = ""; +private const string Authority = "https://login.microsoftonline.com/contoso.com"; +private readonly string[] scopes = new string[] { "user.read" }; + +static async Task GetATokenForGraph() +{ + IPublicClientApplication pca = PublicClientApplicationBuilder + .Create(ClientId) + .WithAuthority(Authority) + .WithDefaultRedirectUri() + .Build(); + + var accounts = await pca.GetAccountsAsync(); + + // All AcquireToken* methods store the tokens in the cache, so check the cache first + try + { + return await pca.AcquireTokenSilent(scopes, accounts.FirstOrDefault()) + .ExecuteAsync(); + } + catch (MsalUiRequiredException ex) + { + // No token found in the cache or Azure AD insists that a form interactive auth is required (e.g. the tenant admin turned on MFA) + // If you want to provide a more complex user experience, check out ex.Classification + + return await AcquireByDeviceCodeAsync(pca); + } +} + +private static async Task AcquireByDeviceCodeAsync(IPublicClientApplication pca) +{ + try + { + var result = await pca.AcquireTokenWithDeviceCode(scopes, + deviceCodeResult => + { + // This will print the message on the console which tells the user where to go sign-in using + // a separate browser and the code to enter once they sign in. + // The AcquireTokenWithDeviceCode() method will poll the server after firing this + // device code callback to look for the successful login of the user via that browser. + // This background polling (whose interval and timeout data is also provided as fields in the + // deviceCodeCallback class) will occur until: + // * The user has successfully logged in via browser and entered the proper code + // * The timeout specified by the server for the lifetime of this code (typically ~15 minutes) has been reached + // * The developing application calls the Cancel() method on a CancellationToken sent into the method. + // If this occurs, an OperationCanceledException will be thrown (see catch below for more details). + Console.WriteLine(deviceCodeResult.Message); + return Task.FromResult(0); + }).ExecuteAsync(); + + Console.WriteLine(result.Account.Username); + return result; + } + + // TODO: handle or throw all these exceptions depending on your app + catch (MsalServiceException ex) + { + // Kind of errors you could have (in ex.Message) + + // AADSTS50059: No tenant-identifying information found in either the request or implied by any provided credentials. + // Mitigation: as explained in the message from Azure AD, the authoriy needs to be tenanted. you have probably created + // your public client application with the following authorities: + // https://login.microsoftonline.com/common or https://login.microsoftonline.com/organizations + + // AADSTS90133: Device Code flow is not supported under /common or /consumers endpoint. + // Mitigation: as explained in the message from Azure AD, the authority needs to be tenanted + + // AADSTS90002: Tenant not found. This may happen if there are + // no active subscriptions for the tenant. Check with your subscription administrator. + // Mitigation: if you have an active subscription for the tenant this might be that you have a typo in the + // tenantId (GUID) or tenant domain name. + } + catch (OperationCanceledException ex) + { + // If you use a CancellationToken, and call the Cancel() method on it, then this *may* be triggered + // to indicate that the operation was cancelled. + // See https://learn.microsoft.com/dotnet/standard/threading/cancellation-in-managed-threads + // for more detailed information on how C# supports cancellation in managed threads. + } + catch (MsalClientException ex) + { + // Possible cause - verification code expired before contacting the server + // This exception will occur if the user does not manage to sign-in before a time out (15 mins) and the + // call to `AcquireTokenWithDeviceCode` is not cancelled in between + } +} +``` + :::column-end::: +:::row-end::: + +--- +### MSAL benefits + +Key benefits of MSAL.NET for your app include: + +- **Resilience**. MSAL.NET helps make your app resilient through the following: + + - Azure AD Cached Credential Service (CCS) benefits. CCS operates as an Azure AD backup. + - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](app-resilience-continuous-access-evaluation.md). + +### Troubleshooting + +The following troubleshooting information makes two assumptions: + +- Your ADAL.NET code was working. +- You migrated to MSAL by keeping the same client ID. + +If you get an exception with either of the following messages: + +> `AADSTS90002: Tenant 'cf61953b-e41a-46b3-b500-663d279ea744' not found. This may happen if there are no active` +> `subscriptions for the tenant. Check to make sure you have the correct tenant ID. Check with your subscription` +> `administrator.` + +You can troubleshoot the exception by using these steps: + +1. Confirm that you're using the latest version of MSAL.NET. +1. Confirm that the authority host that you set when building the confidential client application and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](msal-national-cloud.md) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? + +## Next steps + +Learn more about the [differences between ADAL.NET and MSAL.NET apps](msal-net-differences-adal-net.md). +Learn more about [token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md) diff --git a/msal-dotnet-articles/how-to/msal-net-migration.md b/msal-dotnet-articles/how-to/msal-net-migration.md new file mode 100644 index 000000000..cf6846adc --- /dev/null +++ b/msal-dotnet-articles/how-to/msal-net-migration.md @@ -0,0 +1,73 @@ +--- +title: Migrating to MSAL.NET and Microsoft.Identity.Web +description: Learn why and how to migrate from Azure AD Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET) or Microsoft.Identity.Web +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 11/25/2022 +ms.author: dmwendia +ms.reviewer: jmprieur, saeeda +ms.custom: devx-track-csharp, aaddev, has-adal-ref, engagement-fy23, devx-track-dotnet +#Customer intent: As an application developer, I want to learn why and how to migrate from ADAL.NET and MSAL.NET or Microsoft.Identity.Web libraries. +--- + +# Migrating applications to MSAL.NET or Microsoft.Identity.Web + +## Why migrate to MSAL.NET or Microsoft.Identity.Web + +Both the Microsoft Authentication Library for .NET (MSAL.NET) and Azure AD Authentication Library for .NET (ADAL.NET) are used to authenticate Azure AD entities and request tokens from Azure AD. Up until now, most developers have requested tokens from Azure AD for developers platform (v1.0) using Azure AD Authentication Library (ADAL). These tokens are used to authenticate Azure AD identities (work and school accounts). + +MSAL comes with benefits over ADAL. Some of these benefits are listed below: + +- You can authenticate a broader set of Microsoft identities: work or school accounts, personal Microsoft accounts, and social or local accounts with Azure AD B2C, +- Your users will get the best single-sign-on experience, +- Your application can enable incremental consent, Conditional Access, +- You benefit from continuous innovation in term of security and resilience, +- Your application implements the best practices in term of resilience and security. + +**MSAL.NET or Microsoft.Identity.Web are now the recommended auth libraries to use with the Microsoft identity platform**. No new features will be implemented on ADAL.NET. The efforts are focused on improving MSAL.NET. For details see the announcement: [Update your applications to use Microsoft Authentication Library and Microsoft Graph API](https://techcommunity.microsoft.com/t5/azure-active-directory-identity/update-your-applications-to-use-microsoft-authentication-library/ba-p/1257363). + +## Should you migrate to MSAL.NET or to Microsoft.Identity.Web + +Before digging in the details of MSAL.NET vs ADAL.NET, you might want to check if you want to use MSAL.NET or a higher-level abstraction like [Microsoft.Identity.Web](microsoft-identity-web.md). + +For details about the decision tree below, read [MSAL.NET or Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/MSAL.NET-or-Microsoft.Identity.Web). + +!["Block diagram explaining how to choose if you need to use MSAL.NET and Microsoft.Identity.Web or both when migrating from ADAL.NET"](media/msal-net-migration/decision-diagram.png) + + +### Deprecated ADAL.Net NuGet packages and their MSAL.Net equivalents + +You might unknowingly consume ADAL dependencies from other Azure SDKs. Below are few of the deprecated packages and their MSAL alternatives. + +| ADAL.NET Package (Deprecated) | MSAL.NET Package (Current) | +| ----------- | ----------- | +| `Microsoft.Azure.KeyVault`| `Azure.Security.KeyVault.Secrets, Azure.Security.KeyVault.Keys, Azure.Security.KeyVault.Certificates`| +| `Microsoft.Azure.Management.Compute`| `Azure.ResourceManager.Compute`| +| `Microsoft.Azure.Services.AppAuthentication`| `Azure.Identity`| +| `Microsoft.Azure.Management.StorageSync`| `Azure.ResourceManager.StorageSync`| +| `Microsoft.Azure.Management.Fluent`| `Azure.ResourceManager`| +| `Microsoft.Azure.Management.EventGrid`| `Azure.ResourceManager.EventGrid`| +| `Microsoft.Azure.Management.Automation`| `Azure.ResourceManager.Automation`| +| `Microsoft.Azure.Management.Compute.Fluent`| `Azure.ResourceManager.Compute`| +| `Microsoft.Azure.Management.MachineLearning.Fluent`| `Azure.ResourceManager.MachineLearningCompute`| +| `Microsoft.Azure.Management.Media, windowsazure.mediaservices`| `Azure.ResourceManager.Media`| + +## Next steps + +- Learn about [public client and confidential client applications](msal-client-applications.md). +- Learn how to [migrate confidential client applications built on top of ASP.NET MVC or .NET classic from ADAL.NET to MSAL.NET](msal-net-migration-confidential-client.md). +- Learn how to [migrate public client applications built on top of .NET or .NET classic from ADAL.NET to MSAL.NET](msal-net-migration-public-client.md). +- Learn more about the [Differences between ADAL.NET and MSAL.NET apps](msal-net-differences-adal-net.md). +- Learn how to migrate confidential client applications built on top of ASP.NET Core from ADAL.NET to Microsoft.Identity.Web: + - [Web apps](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apps#migrating-from-previous-versions--adding-authentication) + - [Web APIs](https://github.com/AzureAD/microsoft-identity-web/wiki/web-apis) diff --git a/msal-dotnet-articles/how-to/token-cache-serialization.md b/msal-dotnet-articles/how-to/token-cache-serialization.md new file mode 100644 index 000000000..14444eaf8 --- /dev/null +++ b/msal-dotnet-articles/how-to/token-cache-serialization.md @@ -0,0 +1,570 @@ +--- +title: Token cache serialization (MSAL.NET) +description: Learn about serialization and custom serialization of the token cache using the Microsoft Authentication Library for .NET (MSAL.NET). +services: active-directory +author: Dickson-Mwendia +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.topic: conceptual +ms.workload: identity +ms.date: 08/24/2023 +ms.author: dmwendia +ms.reviewer: ddelimarsky, jmprieur +ms.custom: devx-track-csharp, aaddev, has-adal-ref, devx-track-dotnet +#Customer intent: As an application developer, I want to learn about token cache serialization so I can have fine-grained control of the proxy. +--- + +# Token cache serialization in MSAL.NET + +After Microsoft Authentication Library (MSAL) [acquires a token](msal-acquire-cache-tokens.md), it caches that token. Public client applications (desktop and mobile apps) should try to get a token from the cache before acquiring a token by another method. Acquisition methods on confidential client applications manage the cache themselves. This article discusses default and custom serialization of the token cache in MSAL.NET. + +## Quick summary + +The recommendation is: +- When writing a desktop application, use the cross-platform token cache as explained in [desktop apps](msal-net-token-cache-serialization.md?tabs=desktop). +- No action required for [mobile and Universal Windows Platform (UWP) apps](msal-net-token-cache-serialization.md?tabs=mobile). MSAL.NET provides secure storage for the cache. +- In ASP.NET Core [web apps](scenario-web-app-call-api-overview.md) and [web APIs](scenario-web-api-call-api-overview.md), use [Microsoft.Identity.Web](microsoft-identity-web.md) as a higher-level API. `Microsoft.Identity.Web` provides token caches as explained in [ASP.NET Core web apps and web APIs](msal-net-token-cache-serialization.md?tabs=aspnetcore). +- In the other cases of [web apps](scenario-web-app-call-api-overview.md) and [web APIs](scenario-web-api-call-api-overview.md): + - If you request tokens for users in a production application, use a [distributed token cache](msal-net-token-cache-serialization.md?tabs=aspnet#distributed-caches) (Redis, SQL Server, Azure Cosmos DB, distributed memory). Use token cache serializers available from [Microsoft.Identity.Web.TokenCache](https://www.nuget.org/packages/Microsoft.Identity.Web.TokenCache/). + - If you want to use an in-memory cache and you're only using [`AcquireTokenForClient`](/dotnet/api/microsoft.identity.client.acquiretokenforclientparameterbuilder), either reuse the confidential client application instance and don't add a serializer, or create a new confidential client application and enable the [shared cache option](msal-net-token-cache-serialization.md?tabs=aspnet#no-token-cache-serialization). + + A shared cache is faster because it's not serialized. However, the memory grows as tokens are cached. The number of tokens is equal to the number of tenants times the number of downstream APIs. An app token is about 2 KB in size, whereas tokens for a user are about 7 KB in size. It's great for development, or if you have few users. + - If you want to use an in-memory token cache and control its size and eviction policies, use the [Microsoft.Identity.Web in-memory cache option](msal-net-token-cache-serialization.md?tabs=aspnet#in-memory-token-cache-1). +- If you build an SDK and want to write your own token cache serializer for confidential client applications, inherit from [Microsoft.Identity.Web.MsalAbstractTokenCacheProvider](https://github.com/AzureAD/microsoft-identity-web/blob/master/src/Microsoft.Identity.Web.TokenCache/MsalAbstractTokenCacheProvider.cs) and override the [WriteCacheBytesAsync](/dotnet/api/microsoft.identity.web.tokencacheproviders.msalabstracttokencacheprovider.writecachebytesasync) and [ReadCacheBytesAsync](/dotnet/api/microsoft.identity.web.tokencacheproviders.msalabstracttokencacheprovider.readcachebytesasync) methods. + + +## [ASP.NET Core web apps and web APIs](#tab/aspnetcore) + +The [Microsoft.Identity.Web.TokenCache](https://www.nuget.org/packages/Microsoft.Identity.Web.TokenCache) NuGet package provides token cache serialization within the [Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web) library. + +If you're using the [MSAL library](/dotnet/api/microsoft.identity.client) directly in an ASP.NET Core app, consider using [Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web), which provides a simpler, higher-level API. Otherwise, see [Non-ASP.NET Core web apps and web APIs](?tabs=aspnet#configuring-the-token-cache), which covers direct MSAL usage. + + +| Extension method | Description | +| ---------------- | ------------ | +| [AddInMemoryTokenCaches](/dotnet/api/microsoft.identity.web.microsoftidentityappcallswebapiauthenticationbuilder.addinmemorytokencaches) | Creates a temporary cache in memory for token storage and retrieval. In-memory token caches are faster than other cache types, but their tokens aren't persisted between application restarts, and you can't control the cache size. In-memory caches are good for applications that don't require tokens to persist between app restarts. Use an in-memory token cache in apps that participate in machine-to-machine auth scenarios like services, daemons, and others that use [AcquireTokenForClient](/dotnet/api/microsoft.identity.client.acquiretokenforclientparameterbuilder) (the client credentials grant). In-memory token caches are also good for sample applications and during local app development. Microsoft.Identity.Web versions 1.19.0+ share an in-memory token cache across all application instances. +| [AddSessionTokenCaches](/dotnet/api/microsoft.identity.web.microsoftidentityappcallswebapiauthenticationbuilderextension.addsessiontokencaches) | The token cache is bound to the user session. This option isn't ideal if the ID token contains many claims, because the cookie becomes too large. +| `AddDistributedTokenCaches` | The token cache is an adapter against the ASP.NET Core `IDistributedCache` implementation. It enables you to choose between a distributed memory cache, a Redis cache, a distributed NCache, or a SQL Server cache. For details about the `IDistributedCache` implementations, see [Distributed memory cache](/aspnet/core/performance/caching/distributed). + + +### In-memory token cache + +Here's an example of code that uses the in-memory cache in the [ConfigureServices](/dotnet/api/microsoft.aspnetcore.hosting.startupbase.configureservices) method of the [Startup](/aspnet/core/fundamentals/startup) class in an ASP.NET Core application: + +```CSharp +using Microsoft.Identity.Web; + +public class Startup +{ + const string scopesToRequest = "user.read"; + + public void ConfigureServices(IServiceCollection services) + { + // code before + services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) + .AddMicrosoftIdentityWebApp(Configuration) + .EnableTokenAcquisitionToCallDownstreamApi(new string[] { scopesToRequest }) + .AddInMemoryTokenCaches(); + // code after + } + // code after +} +``` + +`AddInMemoryTokenCaches` is suitable in production if you request app-only tokens. If you use user tokens, consider using a distributed token cache. + +Token cache configuration code is similar between ASP.NET Core web apps and web APIs. + +### Distributed token caches + +Here are examples of possible distributed caches: + +```C# +// or use a distributed Token Cache by adding + services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) + .AddMicrosoftIdentityWebApp(Configuration) + .EnableTokenAcquisitionToCallDownstreamApi(new string[] { scopesToRequest } + .AddDistributedTokenCaches(); + +// Distributed token caches have a L1/L2 mechanism. +// L1 is in memory, and L2 is the distributed cache +// implementation that you will choose below. +// You can configure them to limit the memory of the +// L1 cache, encrypt, and set eviction policies. +services.Configure(options => + { + // Optional: Disable the L1 cache in apps that don't use session affinity + // by setting DisableL1Cache to 'true'. + options.DisableL1Cache = false; + + // Or limit the memory (by default, this is 500 MB) + options.L1CacheOptions.SizeLimit = 1024 * 1024 * 1024; // 1 GB + + // You can choose if you encrypt or not encrypt the cache + options.Encrypt = false; + + // And you can set eviction policies for the distributed + // cache. + options.SlidingExpiration = TimeSpan.FromHours(1); + }); + +// Then, choose your implementation of distributed cache +// ----------------------------------------------------- + +// good for prototyping and testing, but this is NOT persisted and it is NOT distributed - do not use in production +services.AddDistributedMemoryCache(); + +// Or a Redis cache +// Requires the Microsoft.Extensions.Caching.StackExchangeRedis NuGet package +services.AddStackExchangeRedisCache(options => +{ + options.Configuration = "localhost"; + options.InstanceName = "SampleInstance"; +}); + +// You can even decide if you want to repair the connection +// with Redis and retry on Redis failures. +services.Configure(options => +{ + options.OnL2CacheFailure = (ex) => + { + if (ex is StackExchange.Redis.RedisConnectionException) + { + // action: try to reconnect or something + return true; //try to do the cache operation again + } + return false; + }; +}); + +// Or even a SQL Server token cache +// Requires the Microsoft.Extensions.Caching.SqlServer NuGet package +services.AddDistributedSqlServerCache(options => +{ + options.ConnectionString = _config["DistCache_ConnectionString"]; + options.SchemaName = "dbo"; + options.TableName = "TestCache"; +}); + +// Or an Azure Cosmos DB cache +// Requires the Microsoft.Extensions.Caching.Cosmos NuGet package +services.AddCosmosCache((CosmosCacheOptions cacheOptions) => +{ + cacheOptions.ContainerName = Configuration["CosmosCacheContainer"]; + cacheOptions.DatabaseName = Configuration["CosmosCacheDatabase"]; + cacheOptions.ClientBuilder = new CosmosClientBuilder(Configuration["CosmosConnectionString"]); + cacheOptions.CreateIfNotExists = true; +}); +``` + +For more information, see: +- [Distributed cache advanced options](https://github.com/AzureAD/microsoft-identity-web/wiki/L1-Cache-in-Distributed-(L2)-Token-Cache) +- [Handle L2 cache eviction](https://github.com/AzureAD/microsoft-identity-web/wiki/Handle-L2-cache-eviction) +- [Set up a Redis cache in Docker](https://github.com/AzureAD/microsoft-identity-web/wiki/Set-up-a-Redis-cache-in-Docker) +- [Troubleshooting](https://github.com/AzureAD/microsoft-identity-web/wiki/Token-Cache-Troubleshooting) + +The usage of distributed cache is featured in the [ASP.NET Core web app tutorial](/aspnet/core/tutorials/first-mvc-app/) in the [phase 2-2 token cache](https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/tree/master/2-WebApp-graph-user/2-2-TokenCache). + +## [Non-ASP.NET Core web apps and web APIs](#tab/aspnet) + +If you're using MSAL.NET in your web app or web API, you can benefit from token cache serializers in [Microsoft.Identity.Web.TokenCache](https://www.nuget.org/packages/Microsoft.Identity.Web.TokenCache) + +### Referencing the NuGet package + +Add the [Microsoft.Identity.Web.TokenCache](https://www.nuget.org/packages/Microsoft.Identity.Web.TokenCache) NuGet package to your project instead of MSAL.NET. + +### Configuring the token cache + +The following code shows how to add an in-memory well-partitioned token cache to your app. + +```CSharp +using Microsoft.Identity.Web; +using Microsoft.Identity.Client; +using Microsoft.Extensions.DependencyInjection; +``` + +```CSharp + +public static async Task GetTokenAsync(string clientId, X509Certificate cert, string authority, string[] scopes) + { + // Create the confidential client application + app= ConfidentialClientApplicationBuilder.Create(clientId) + // Alternatively to the certificate, you can use .WithClientSecret(clientSecret) + .WithCertificate(cert) + .WithLegacyCacheCompatibility(false) + .WithAuthority(authority) + .Build(); + + // Add a static in-memory token cache. Other options available: see below + app.AddInMemoryTokenCache(); // Microsoft.Identity.Web.TokenCache 1.17+ + + // Make the call to get a token for client_credentials flow (app-to-app scenario) + return await app.AcquireTokenForClient(scopes).ExecuteAsync(); + + // OR Make the call to get a token for OBO (web API scenario) + return await app.AcquireTokenOnBehalfOf(scopes, userAssertion).ExecuteAsync(); + + // OR Make the call to get a token via auth code (web app scenario) + return await app.AcquireTokenByAuthorizationCode(scopes, authCode); + + // OR, when the user has previously logged in, get a token silently + string homeAccountId = User.GetHomeAccountId(); // uid and utid claims + var account = await app.GetAccountAsync(homeAccountId); + try + { + return await app.AcquireTokenSilent(scopes, account).ExecuteAsync();; + } + catch (MsalUiRequiredException) + { + // cannot get a token silently, so redirect the user to be challenged + } + } +``` + +### Available caching technologies + +Instead of `app.AddInMemoryTokenCache();`, you can use different caching serialization technologies. For example, you can use no-serialization, in-memory, and distributed token cache storage provided by .NET. + + +#### Token cache without serialization + +Use `.WithCacheOptions(CacheOptions.EnableSharedCacheOptions)` when building the application and don't add any serializer. + +> [!IMPORTANT] +> There is no way to control the size of the cache with this option. If you are building a website, a web API, or a multi-tenant S2S app, then use the `In-memory token cache` option. + +```CSharp + // Create the confidential client application + app= ConfidentialClientApplicationBuilder.Create(clientId) + // Alternatively to the certificate, you can use .WithClientSecret(clientSecret) + .WithCertificate(cert) + .WithLegacyCacheCompatibility(false) + .WithCacheOptions(CacheOptions.EnableSharedCacheOptions) + .WithAuthority(authority) + .Build(); +``` + +`WithCacheOptions(CacheOptions.EnableSharedCacheOptions)` makes the internal MSAL token cache shared between MSAL client application instances. Sharing a token cache is faster than using any token cache serialization, but the internal in-memory token cache doesn't have eviction policies. Existing tokens are refreshed in place, but fetching tokens for different users, tenants, and resources makes the cache grow accordingly. + +If you use this approach and have a large number of users or tenants, be sure to monitor the memory footprint. If the memory footprint becomes a problem, consider enabling token cache serialization, which might reduce the internal cache size. Currently, you can't use shared cache and cache serialization together. + +#### In-memory token cache + +In-memory token cache serialization is great in samples. It's also good in production applications if you only request app tokens (`AcquireTokenForClient`), provided that you don't mind if the token cache is lost when the web app is restarted. We don't recommend it in production if you request user tokens (`AcquireTokenByAuthorizationCode`, `AcquireTokenSilent`, `AcquireTokenOnBehalfOf`). + +```CSharp + // Add an in-memory token cache + app.AddInMemoryTokenCache(); +``` + +You can also specify options to limit the size of the in-memory token cache: + +```CSharp + // Add an in-memory token cache with options + app.AddInMemoryTokenCache(services => + { + // Configure the memory cache options + services.Configure(options => + { + options.SizeLimit = 500 * 1024 * 1024; // in bytes (500 MB) + }); + } + ); +``` + +#### Distributed caches + +If you use `app.AddDistributedTokenCache`, the token cache is an adapter against the .NET `IDistributedCache` implementation. So you can choose between a SQL Server cache, a Redis cache, an Azure Cosmos DB cache, or any other cache implementing the [IDistributedCache](/dotnet/api/microsoft.extensions.caching.distributed.idistributedcache?view=dotnet-plat-ext-6.0&preserve-view=true) interface. + +For testing purposes only, you may want to use `services.AddDistributedMemoryCache()`, an in-memory implementation of `IDistributedCache`. + +Here's the code for a SQL Server cache: + +```CSharp + // SQL Server token cache + app.AddDistributedTokenCache(services => + { + services.AddDistributedSqlServerCache(options => + { + + // Requires to reference Microsoft.Extensions.Caching.SqlServer + options.ConnectionString = @"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=TestCache;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"; + options.SchemaName = "dbo"; + options.TableName = "TestCache"; + + // You don't want the SQL token cache to be purged before the access token has expired. Usually + // access tokens expire after 1 hour (but this can be changed by token lifetime policies), whereas + // the default sliding expiration for the distributed SQL database is 20 mins. + // Use a value above 60 mins (or the lifetime of a token in case of longer-lived tokens) + options.DefaultSlidingExpiration = TimeSpan.FromMinutes(90); + }); + }); +``` + +Here's the code for a Redis cache: + +```CSharp + // Redis token cache + app.AddDistributedTokenCache(services => + { + // Requires to reference Microsoft.Extensions.Caching.StackExchangeRedis + services.AddStackExchangeRedisCache(options => + { + options.Configuration = "localhost"; + options.InstanceName = "Redis"; + }); + + // You can even decide if you want to repair the connection + // with Redis and retry on Redis failures. + services.Configure(options => + { + options.OnL2CacheFailure = (ex) => + { + if (ex is StackExchange.Redis.RedisConnectionException) + { + // action: try to reconnect or something + return true; //try to do the cache operation again + } + return false; + }; + }); + }); +``` + +Here's the code for an Azure Cosmos DB cache: + +```CSharp + // Azure Cosmos DB token cache + app.AddDistributedTokenCache(services => + { + // Requires to reference Microsoft.Extensions.Caching.Cosmos + services.AddCosmosCache((CosmosCacheOptions cacheOptions) => + { + cacheOptions.ContainerName = Configuration["CosmosCacheContainer"]; + cacheOptions.DatabaseName = Configuration["CosmosCacheDatabase"]; + cacheOptions.ClientBuilder = new CosmosClientBuilder(Configuration["CosmosConnectionString"]); + cacheOptions.CreateIfNotExists = true; + }); + }); +``` + +For more information about distributed caches, see: + +- [Distributed cache advanced options](https://github.com/AzureAD/microsoft-identity-web/wiki/L1-Cache-in-Distributed-(L2)-Token-Cache) +- [Handle L2 cache eviction](https://github.com/AzureAD/microsoft-identity-web/wiki/Handle-L2-cache-eviction) +- [Set up a Redis cache in Docker](https://github.com/AzureAD/microsoft-identity-web/wiki/Set-up-a-Redis-cache-in-Docker) +- [Troubleshooting](https://github.com/AzureAD/microsoft-identity-web/wiki/Token-Cache-Troubleshooting) + +### Disabling a legacy token cache + +MSAL has some internal code specifically to enable interacting with legacy Microsoft Authentication Library (ADAL) cache. When MSAL and ADAL aren't used side by side, the legacy cache isn't used and the related legacy code is unnecessary. MSAL [4.25.0](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases/tag/4.25.0) adds the ability to disable legacy ADAL cache code and improve cache usage performance. For a performance comparison before and after disabling the legacy cache, see [GitHub pull request 2309](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/pull/2309). + +Call `.WithLegacyCacheCompatibility(false)` on an application builder like the following code. + +```csharp +var app = ConfidentialClientApplicationBuilder + .Create(clientId) + .WithClientSecret(clientSecret) + .WithLegacyCacheCompatibility(false) + .Build(); +``` + +### Samples + +- The following sample showcases using the token cache serializers in .NET Framework and .NET Core applications: [ConfidentialClientTokenCache](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). +- The following sample is an ASP.NET web app that uses the same techniques: [Use OpenID Connect to sign in users to Microsoft identity platform](https://github.com/Azure-Samples/ms-identity-aspnet-webapp-openidconnect). + +## [Desktop apps](#tab/desktop) + +In desktop applications, we recommend that you use the cross-platform token cache. MSAL.NET provides the cross-platform token cache in a separate library named [Microsoft.Identity.Client.Extensions.Msal](https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet). + +#### Referencing the NuGet package + +Add the [Microsoft.Identity.Client.Extensions.Msal](https://www.nuget.org/packages/Microsoft.Identity.Client.Extensions.Msal/) NuGet package to your project. + +#### Configuring the token cache + +For details, see the [Cross platform Token Cache](https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet/wiki/Cross-platform-Token-Cache). Here's an example using the cross-platform token cache: + +```csharp + var storageProperties = + new StorageCreationPropertiesBuilder(Config.CacheFileName, Config.CacheDir) + .WithLinuxKeyring( + Config.LinuxKeyRingSchema, + Config.LinuxKeyRingCollection, + Config.LinuxKeyRingLabel, + Config.LinuxKeyRingAttr1, + Config.LinuxKeyRingAttr2) + .WithMacKeyChain( + Config.KeyChainServiceName, + Config.KeyChainAccountName) + .Build(); + + IPublicClientApplication pca = PublicClientApplicationBuilder.Create(clientId) + .WithAuthority(Config.Authority) + .WithRedirectUri("http://localhost") // make sure to register this redirect URI for the interactive login + .Build(); + + +// This hooks up the cross-platform cache into MSAL +var cacheHelper = await MsalCacheHelper.CreateAsync(storageProperties ); +cacheHelper.RegisterCache(pca.UserTokenCache); + +``` + +#### Plain-text fallback mode + +The cross-platform token cache allows you to store unencrypted tokens in plain text. This feature is intended for use in development environments for debugging purposes only. + +You can use the plain-text fallback mode by using the following code pattern. + +```csharp +storageProperties = + new StorageCreationPropertiesBuilder( + Config.CacheFileName + ".plaintext", + Config.CacheDir) + .WithUnprotectedFile() + .Build(); + +var cacheHelper = await MsalCacheHelper.CreateAsync(storageProperties).ConfigureAwait(false); +``` + + +## [Mobile apps](#tab/mobile) + +MSAL.NET provides an in-memory token cache by default. Serialization is provided by default for platforms where secure storage is available for a user as part of the platform: Universal Windows Platform (UWP), Xamarin.iOS, and Xamarin.Android. + +## [Write your own cache](#tab/custom) + +If you want to write your own token cache serializer, MSAL.NET provides custom token cache serialization in the .NET Framework and .NET Core subplatforms. Events are fired when the cache is accessed. Apps can choose whether to serialize or deserialize the cache. + +On confidential client applications that handle users (web apps that sign in users and call web APIs, and web APIs that call downstream web APIs), there can be many users. The users are processed in parallel. For security and performance reasons, our recommendation is to serialize one cache per user. Serialization events compute a cache key based on the identity of the processed user and serialize or deserialize a token cache for that user. + +Remember, custom serialization isn't available on mobile platforms (UWP, Xamarin.iOS, and Xamarin.Android). MSAL already defines a secure and performant serialization mechanism for these platforms. .NET desktop and .NET Core applications, however, have varied architectures. And MSAL can't implement a general-purpose serialization mechanism. + +For example, websites might choose to store tokens in a Redis cache, or desktop apps might store tokens in an encrypted file. So serialization isn't provided out of the box. To have a persistent token cache application in .NET desktop or .NET Core, customize the serialization. + +The following classes and interfaces are used in token cache serialization: + +- `ITokenCache` defines events to subscribe to token cache serialization requests and methods to serialize or deserialize the cache at various formats (MSAL 2.x and MSAL 3.x). +- `TokenCacheCallback` is a callback passed to the events so that you can handle the serialization. They are called with arguments of type `TokenCacheNotificationArgs`. +- `TokenCacheNotificationArgs` only provides the `ClientId` value of the application and a reference to the user for which the token is available. + +![Diagram that shows the classes in token cache serialization.](media/msal-net-token-cache-serialization/class-diagram.png) + +> [!IMPORTANT] +> MSAL.NET creates token caches for you. It provides you with the `IToken` cache when you call an application's `UserTokenCache` and `AppTokenCache` properties. You're not supposed to implement the interface yourself. +> +> Your responsibility, when you implement a custom token cache serialization, is to react to `BeforeAccess` and `AfterAccess` events (or their `Async` varieties). The `BeforeAccess` delegate is responsible for deserializing the cache, whereas the `AfterAccess` one is responsible for serializing the cache. Parts of these events store or load blobs, which are passed through the event argument to whatever storage you want. + +The strategies are different depending on whether you're writing a token cache serialization for a [public client application](msal-client-applications.md) (desktop) or a [confidential client application](msal-client-applications.md) (web app, web API, daemon app). + +### Custom token cache for a web app or web API (confidential client application) + +If you want to write your own token cache serializer for confidential client applications, we recommend that you inherit from [Microsoft.Identity.Web.MsalAbstractTokenCacheProvider](https://github.com/AzureAD/microsoft-identity-web/blob/master/src/Microsoft.Identity.Web.TokenCache/MsalAbstractTokenCacheProvider.cs) and override the `WriteCacheBytesAsync` and `ReadCacheBytesAsync` methods. + +Examples of token cache serializers are provided in [Microsoft.Identity.Web/TokenCacheProviders](https://github.com/AzureAD/microsoft-identity-web/blob/master/src/Microsoft.Identity.Web.TokenCache). + +### Custom token cache for a desktop or mobile app (public client application) + +MSAL.NET v2.x and later versions provide several options for serializing the token cache of a public client. You can serialize the cache only to the MSAL.NET format (the unified format cache is common across MSAL and the platforms). +Customizing the token cache serialization to share the single sign-on state between ADAL.NET 3.x, ADAL.NET 5.x, and MSAL.NET is explained in part of the following sample: [active-directory-dotnet-v1-to-v2](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2). + +> [!Note] +> The MSAL.NET 1.1.4-preview token cache format is no longer supported in MSAL 2.x. If you have applications that use MSAL.NET 1.x, your users will have to sign in again. The migration from ADAL 4.x (and 3.x) is supported. + +#### Simple token cache serialization (MSAL only) + +The following code is an example of a naive implementation of custom serialization of a token cache for desktop applications. Here, the user token cache is a file in the same folder as the application. + +After you build the application, you enable the serialization by calling the `TokenCacheHelper.EnableSerialization()` method and passing the application's `UserTokenCache` property. + +```csharp +app = PublicClientApplicationBuilder.Create(ClientId) + .Build(); +TokenCacheHelper.EnableSerialization(app.UserTokenCache); +``` + +The `TokenCacheHelper` helper class is defined as: + +```csharp +static class TokenCacheHelper + { + public static void EnableSerialization(ITokenCache tokenCache) + { + tokenCache.SetBeforeAccess(BeforeAccessNotification); + tokenCache.SetAfterAccess(AfterAccessNotification); + } + + /// + /// Path to the token cache. Note that this could be something different, for instance, for MSIX applications: + /// private static readonly string CacheFilePath = + /// $"{Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)}\{AppName}\msalcache.bin"; + /// + public static readonly string CacheFilePath = System.Reflection.Assembly.GetExecutingAssembly().Location + ".msalcache.bin3"; + + private static readonly object FileLock = new object(); + + + private static void BeforeAccessNotification(TokenCacheNotificationArgs args) + { + lock (FileLock) + { + args.TokenCache.DeserializeMsalV3(File.Exists(CacheFilePath) + ? ProtectedData.Unprotect(File.ReadAllBytes(CacheFilePath), + null, + DataProtectionScope.CurrentUser) + : null); + } + } + + private static void AfterAccessNotification(TokenCacheNotificationArgs args) + { + // if the access operation resulted in a cache update + if (args.HasStateChanged) + { + lock (FileLock) + { + // reflect changes in the persistent store + File.WriteAllBytes(CacheFilePath, + ProtectedData.Protect(args.TokenCache.SerializeMsalV3(), + null, + DataProtectionScope.CurrentUser) + ); + } + } + } + } +``` + +A product-quality, file-based token cache serializer for public client applications (for desktop applications running on Windows, Mac, and Linux) is available from the [Microsoft.Identity.Client.Extensions.Msal](https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet/tree/master/src/Microsoft.Identity.Client.Extensions.Msal) open-source library. You can include it in your applications from the following NuGet package: [Microsoft.Identity.Client.Extensions.Msal](https://www.nuget.org/packages/Microsoft.Identity.Client.Extensions.Msal/). + +#### Dual token cache serialization (MSAL unified cache) + +If you want to implement token cache serialization with the unified cache format (common to MSAL.NET 2.x and other MSALs of the same generation or older, on the same platform), take a look at the following sample: https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/TokenCacheMigration/ADAL2MSAL. + +--- + +## Monitor cache hit ratios and cache performance + +MSAL exposes important metrics as part of [AuthenticationResult.AuthenticationResultMetadata](/dotnet/api/microsoft.identity.client.authenticationresultmetadata) object. You can log these metrics to assess the health of your application. + +| Metric | Meaning | When to trigger an alarm? | +| :-------------: | :----------: | :-----------: | +| `DurationTotalInMs` | Total time spent in MSAL, including network calls and cache. | Alarm on overall high latency (> 1 second). Value depends on token source. From the cache: one cache access. From Azure Active Directory (Azure AD): two cache accesses plus one HTTP call. First ever call (per-process) takes longer because of one extra HTTP call. | +| `DurationInCacheInMs` | Time spent loading or saving the token cache, which is customized by the app developer (for example, save to Redis).| Alarm on spikes. | +| `DurationInHttpInMs`| Time spent making HTTP calls to Azure AD. | Alarm on spikes.| +| `TokenSource` | Source of the token. Tokens are retrieved from the cache much faster (for example, ~100 ms versus ~700 ms). Can be used to monitor and alarm the cache hit ratio. | Use with `DurationTotalInMs`. | +| `CacheRefreshReason` | Reason for fetching the access token from the identity provider. | Use with `TokenSource`. | + +## Next steps + +The following samples illustrate token cache serialization. + +| Sample | Platform | Description| +| ------ | -------- | ----------- | +|[active-directory-dotnet-desktop-msgraph-v2](https://github.com/azure-samples/active-directory-dotnet-desktop-msgraph-v2) | Desktop (WPF) | Windows Desktop .NET (WPF) application that calls the Microsoft Graph API. ![Diagram that shows a topology with a desktop app client flowing to Azure Active Directory by acquiring a token interactively and to Microsoft Graph.](media/msal-net-token-cache-serialization/topology.png)| +|[active-directory-dotnet-v1-to-v2](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2) | Desktop (console) | Set of Visual Studio solutions that illustrate the migration of Azure AD v1.0 applications (using ADAL.NET) to Microsoft identity platform applications (using MSAL.NET). In particular, see [Token cache migration](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/blob/master/TokenCacheMigration/README.md) and [Confidential client token cache](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). | +[ms-identity-aspnet-webapp-openidconnect](https://github.com/Azure-Samples/ms-identity-aspnet-webapp-openidconnect) | ASP.NET (net472) | Example of token cache serialization in an ASP.NET MVC application (using MSAL.NET). From 3e034c670f3c675017c1d1d43fcc82e730130d4b Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 28 Aug 2023 16:11:20 +0000 Subject: [PATCH 45/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=382664&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../msal-web-dotnet-latest.xml | 32 ++++---- .../CredentialDescription.xml | 22 +++--- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 +- .../EventLogLevel.xml | 7 ++ .../IIdentityLogger.xml | 3 + .../ITelemetryClient.xml | 7 ++ .../LogEntry.xml | 5 ++ .../NullIdentityModelLogger.xml | 4 + .../NullTelemetryClient.xml | 8 ++ .../ObservabilityConstants.xml | 5 ++ .../TelemetryEventDetails.xml | 11 +++ .../JsonClaimValueTypes.xml | 4 + .../JsonWebToken.xml | 41 ++++++++++ .../JsonWebTokenHandler.xml | 37 +++++++++ .../JwtConstants.xml | 11 +++ .../JwtHeaderParameterNames.xml | 16 ++++ .../JwtRegisteredClaimNames.xml | 30 +++++++ .../JwtTokenUtilities.xml | 8 ++ .../KeyVaultCryptoProvider.xml | 5 ++ .../KeyVaultKeyWrapProvider.xml | 8 ++ ...aultSecurityKey+AuthenticationCallback.xml | 1 + .../KeyVaultSecurityKey.xml | 6 ++ .../KeyVaultSignatureProvider.xml | 6 ++ .../ISafeLogSecurityArtifact.xml | 2 + .../IdentityModelEventSource.xml | 21 +++++ .../IdentityModelTelemetryUtil.xml | 5 ++ .../LogHelper.xml | 28 +++++++ .../LoggerContext.xml | 8 ++ .../TextWriterEventListener.xml | 7 ++ .../IdentityLoggerAdapter.xml | 4 + .../ManagedKeyVaultSecurityKey.xml | 4 + .../InvalidConfigurationException.xml | 5 ++ ...LastKnownGoodConfigurationCacheOptions.xml | 3 + .../OpenIdConnectConfigurationValidator.xml | 4 + .../ActiveDirectoryOpenIdConnectEndpoints.xml | 4 + .../IdTokenValidator.xml | 1 + .../OpenIdConnectConfiguration.xml | 78 +++++++++++++++++++ .../OpenIdConnectConfigurationRetriever.xml | 6 ++ .../OpenIdConnectGrantTypes.xml | 5 ++ .../OpenIdConnectMessage.xml | 56 +++++++++++++ .../OpenIdConnectParameterNames.xml | 43 ++++++++++ .../OpenIdConnectPrompt.xml | 5 ++ .../OpenIdConnectProtocolException.xml | 5 ++ ...dConnectProtocolInvalidAtHashException.xml | 5 ++ ...IdConnectProtocolInvalidCHashException.xml | 5 ++ ...IdConnectProtocolInvalidNonceException.xml | 5 ++ ...IdConnectProtocolInvalidStateException.xml | 5 ++ ...OpenIdConnectProtocolValidationContext.xml | 8 ++ .../OpenIdConnectProtocolValidator.xml | 27 +++++++ .../OpenIdConnectRequestType.xml | 4 + .../OpenIdConnectResponseMode.xml | 4 + .../OpenIdConnectResponseType.xml | 9 +++ .../OpenIdConnectScope.xml | 8 ++ .../OpenIdConnectSessionProperties.xml | 4 + .../OpenIdProviderMetadataNames.xml | 47 +++++++++++ .../CnfDecryptionKeysResolverAsync.xml | 1 + .../ConfirmationClaimTypes.xml | 6 ++ .../HttpClientProvider.xml | 1 + .../NonceValidatorAsync.xml | 1 + .../PopKeyResolverAsync.xml | 1 + .../PopKeyResolverFromKeyIdAsync.xml | 1 + .../ReplayValidatorAsync.xml | 1 + .../SignatureValidatorAsync.xml | 1 + .../SignedHttpRequestClaimTypes.xml | 10 +++ .../SignedHttpRequestConstants.xml | 4 + .../SignedHttpRequestCreationException.xml | 5 ++ .../SignedHttpRequestCreationParameters.xml | 13 ++++ .../SignedHttpRequestDescriptor.xml | 11 +++ .../SignedHttpRequestHandler.xml | 7 ++ ...gnedHttpRequestInvalidAtClaimException.xml | 5 ++ ...ignedHttpRequestInvalidBClaimException.xml | 5 ++ ...nedHttpRequestInvalidCnfClaimException.xml | 5 ++ ...ignedHttpRequestInvalidHClaimException.xml | 5 ++ ...ignedHttpRequestInvalidMClaimException.xml | 5 ++ ...dHttpRequestInvalidNonceClaimException.xml | 6 ++ ...ignedHttpRequestInvalidPClaimException.xml | 5 ++ ...ignedHttpRequestInvalidPopKeyException.xml | 5 ++ ...ignedHttpRequestInvalidQClaimException.xml | 5 ++ ...edHttpRequestInvalidSignatureException.xml | 5 ++ ...gnedHttpRequestInvalidTsClaimException.xml | 5 ++ ...ignedHttpRequestInvalidUClaimException.xml | 5 ++ .../SignedHttpRequestUtilities.xml | 4 + .../SignedHttpRequestValidationContext.xml | 10 +++ .../SignedHttpRequestValidationException.xml | 5 ++ .../SignedHttpRequestValidationParameters.xml | 25 ++++++ .../SignedHttpRequestValidationResult.xml | 7 ++ ...SecurityTokenServiceTypeRoleDescriptor.xml | 5 ++ .../WsFederationConfiguration.xml | 5 ++ .../WsFederationConfigurationRetriever.xml | 6 ++ .../WsFederationConfigurationValidator.xml | 3 + .../WsFederationConstants+Attributes.xml | 6 ++ .../WsFederationConstants+Elements.xml | 8 ++ .../WsFederationConstants+KeyUse.xml | 2 + .../WsFederationConstants+Namespaces.xml | 1 + .../WsFederationConstants+Types.xml | 3 + ...ederationConstants+WsFederationActions.xml | 6 ++ ...rationConstants+WsFederationFaultCodes.xml | 12 +++ ...onConstants+WsFederationParameterNames.xml | 21 +++++ .../WsFederationConstants.xml | 4 + .../WsFederationException.xml | 5 ++ .../WsFederationMessage.xml | 32 ++++++++ .../WsFederationMetadataSerializer.xml | 10 +++ .../WsFederationReadException.xml | 5 ++ .../AuthenticationProtocolMessage.xml | 14 ++++ .../ConfigurationManager`1.xml | 15 ++++ .../ConfigurationValidationResult.xml | 4 + .../FileDocumentRetriever.xml | 3 + .../HttpDocumentRetriever.xml | 9 +++ .../HttpRequestData.xml | 8 ++ .../IConfigurationManager`1.xml | 3 + .../IConfigurationRetriever`1.xml | 2 + .../IConfigurationValidator`1.xml | 2 + .../IDocumentRetriever.xml | 2 + .../StaticConfigurationManager`1.xml | 5 ++ .../X509CertificateValidationMode.xml | 2 + .../TestTokenCreator.xml | 25 ++++++ .../LKGConfigurationCacheOptions.xml | 7 ++ .../AuthenticationInformation.xml | 9 +++ .../ClaimProperties.xml | 9 +++ .../SamlAction.xml | 5 ++ .../SamlAdvice.xml | 7 ++ .../SamlAssertion.xml | 14 ++++ .../SamlAttribute.xml | 9 +++ .../SamlAttributeKeyComparer+AttributeKey.xml | 5 ++ .../SamlAttributeKeyComparer.xml | 4 + .../SamlAttributeStatement.xml | 4 + .../SamlAudienceRestrictionCondition.xml | 4 + .../SamlAuthenticationStatement.xml | 7 ++ .../SamlAuthorityBinding.xml | 5 ++ .../SamlAuthorizationDecisionStatement.xml | 8 ++ .../SamlCondition.xml | 2 + .../SamlConditions.xml | 6 ++ .../SamlConstants+AccessDecision.xml | 4 + .../SamlConstants+AuthenticationMethods.xml | 13 ++++ .../SamlConstants+Types.xml | 26 +++++++ .../SamlConstants.xml | 18 +++++ .../SamlDoNotCacheCondition.xml | 2 + .../SamlEvidence.xml | 6 ++ .../SamlSecurityToken.xml | 10 +++ .../SamlSecurityTokenException.xml | 5 ++ .../SamlSecurityTokenHandler.xml | 49 ++++++++++++ .../SamlSecurityTokenReadException.xml | 5 ++ .../SamlSecurityTokenWriteException.xml | 5 ++ .../SamlSerializer.xml | 34 ++++++++ .../SamlStatement.xml | 2 + .../SamlSubject.xml | 12 +++ .../SamlSubjectStatement.xml | 3 + .../AuthenticationInformation.xml | 8 ++ .../ClaimProperties.xml | 8 ++ .../Saml2Action.xml | 4 + .../Saml2Advice.xml | 5 ++ .../Saml2Assertion.xml | 14 ++++ .../Saml2Attribute.xml | 10 +++ .../Saml2AttributeStatement.xml | 5 ++ .../Saml2AudienceRestriction.xml | 4 + .../Saml2AuthenticationContext.xml | 7 ++ .../Saml2AuthenticationStatement.xml | 8 ++ .../Saml2AuthorizationDecisionStatement.xml | 7 ++ .../Saml2Conditions.xml | 8 ++ .../Saml2Constants+AccessDecision.xml | 4 + .../Saml2Constants+Attributes.xml | 27 +++++++ .../Saml2Constants+ConfirmationMethods.xml | 7 ++ .../Saml2Constants+Elements.xml | 34 ++++++++ .../Saml2Constants+NameIdentifierFormats.xml | 19 +++++ .../Saml2Constants+Types.xml | 24 ++++++ .../Saml2Constants.xml | 7 ++ .../Saml2Evidence.xml | 8 ++ .../Saml2Id.xml | 4 + .../Saml2NameIdentifier.xml | 9 +++ .../Saml2ProxyRestriction.xml | 4 + .../Saml2SecurityToken.xml | 9 +++ .../Saml2SecurityTokenException.xml | 5 ++ .../Saml2SecurityTokenHandler.xml | 52 +++++++++++++ .../Saml2SecurityTokenReadException.xml | 5 ++ .../Saml2SecurityTokenWriteException.xml | 5 ++ .../Saml2Serializer.xml | 46 +++++++++++ .../Saml2Statement.xml | 2 + .../Saml2Subject.xml | 5 ++ .../Saml2SubjectConfirmation.xml | 6 ++ .../Saml2SubjectConfirmationData.xml | 8 ++ .../Saml2SubjectLocality.xml | 4 + .../AlgorithmValidator.xml | 1 + .../AsymmetricSecurityKey.xml | 4 + .../AsymmetricSignatureProvider.xml | 13 ++++ .../AudienceValidator.xml | 1 + .../AuthenticatedEncryptionProvider.xml | 13 ++++ .../AuthenticatedEncryptionResult.xml | 6 ++ .../Base64UrlEncoder.xml | 6 ++ .../BaseConfiguration.xml | 7 ++ .../BaseConfigurationManager.xml | 17 ++++ .../CallContext.xml | 3 + .../CollectionUtilities.xml | 2 + .../CompressionAlgorithms.xml | 3 + .../CompressionProviderFactory.xml | 7 ++ .../CryptoProviderCache.xml | 7 ++ .../CryptoProviderCacheOptions.xml | 4 + .../CryptoProviderFactory.xml | 27 +++++++ .../DateTimeUtil.xml | 6 ++ .../DeflateCompressionProvider.xml | 8 ++ .../ECDsaSecurityKey.xml | 8 ++ .../EcdhKeyExchangeProvider.xml | 4 + .../EncryptingCredentials.xml | 10 +++ .../EpochTime.xml | 4 + .../ICompressionProvider.xml | 5 ++ .../ICryptoProvider.xml | 4 + .../ISecurityTokenValidator.xml | 5 ++ .../ITokenReplayCache.xml | 3 + .../InMemoryCryptoProviderCache.xml | 10 +++ .../IssuerSigningKeyResolver.xml | 1 + ...erSigningKeyResolverUsingConfiguration.xml | 1 + .../IssuerSigningKeyValidator.xml | 1 + ...rSigningKeyValidatorUsingConfiguration.xml | 1 + .../IssuerValidator.xml | 1 + .../IssuerValidatorUsingConfiguration.xml | 1 + .../JsonWebAlgorithmsKeyTypes.xml | 4 + .../JsonWebKey.xml | 35 +++++++++ .../JsonWebKeyConverter.xml | 8 ++ .../JsonWebKeyECTypes.xml | 5 ++ .../JsonWebKeyParameterNames.xml | 26 +++++++ .../JsonWebKeySet.xml | 9 +++ .../JsonWebKeySetParameterNames.xml | 2 + .../JsonWebKeyUseNames.xml | 3 + .../KeyWrapProvider.xml | 9 +++ .../LifetimeValidator.xml | 1 + .../PrivateKeyStatus.xml | 4 + .../RsaKeyWrapProvider.xml | 9 +++ .../RsaSecurityKey.xml | 10 +++ .../SecurityAlgorithms.xml | 60 ++++++++++++++ .../SecurityKey.xml | 9 +++ .../SecurityKeyIdentifierClause.xml | 2 + .../SecurityToken.xml | 9 +++ .../SecurityTokenArgumentException.xml | 5 ++ ...ecurityTokenCompressionFailedException.xml | 5 ++ ...urityTokenDecompressionFailedException.xml | 5 ++ ...SecurityTokenDecryptionFailedException.xml | 5 ++ .../SecurityTokenDescriptor.xml | 15 ++++ ...SecurityTokenEncryptionFailedException.xml | 5 ++ ...ityTokenEncryptionKeyNotFoundException.xml | 5 ++ .../SecurityTokenException.xml | 6 ++ .../SecurityTokenExpiredException.xml | 7 ++ .../SecurityTokenHandler.xml | 15 ++++ ...SecurityTokenInvalidAlgorithmException.xml | 7 ++ .../SecurityTokenInvalidAudienceException.xml | 7 ++ .../SecurityTokenInvalidIssuerException.xml | 7 ++ .../SecurityTokenInvalidLifetimeException.xml | 8 ++ ...SecurityTokenInvalidSignatureException.xml | 5 ++ ...ecurityTokenInvalidSigningKeyException.xml | 6 ++ .../SecurityTokenInvalidTypeException.xml | 7 ++ .../SecurityTokenKeyWrapException.xml | 5 ++ .../SecurityTokenMalformedException.xml | 5 ++ .../SecurityTokenNoExpirationException.xml | 5 ++ .../SecurityTokenNotYetValidException.xml | 7 ++ .../SecurityTokenReplayAddFailedException.xml | 5 ++ .../SecurityTokenReplayDetectedException.xml | 5 ++ ...rityTokenSignatureKeyNotFoundException.xml | 5 ++ ...SecurityTokenUnableToValidateException.xml | 8 ++ .../SecurityTokenValidationException.xml | 5 ++ .../SignatureProvider.xml | 12 +++ .../SignatureValidator.xml | 1 + .../SignatureValidatorUsingConfiguration.xml | 1 + .../SigningCredentials.xml | 10 +++ .../SymmetricKeyWrapProvider.xml | 10 +++ .../SymmetricSecurityKey.xml | 6 ++ .../SymmetricSignatureProvider.xml | 13 ++++ .../TokenContext.xml | 3 + .../TokenDecryptionKeyResolver.xml | 1 + .../TokenHandler.xml | 9 +++ .../TokenReader.xml | 1 + .../TokenReplayValidator.xml | 1 + .../TokenValidationParameters.xml | 66 ++++++++++++++++ .../TokenValidationResult.xml | 12 +++ .../TransformBeforeSignatureValidation.xml | 1 + .../TypeValidator.xml | 1 + .../UniqueId.xml | 6 ++ .../Utility.xml | 7 ++ .../ValidationFailure.xml | 4 + .../Validators.xml | 9 +++ .../X509EncryptingCredentials.xml | 4 + .../X509SecurityKey.xml | 14 ++++ .../X509SigningCredentials.xml | 4 + .../AadIssuerValidator.xml | 4 + .../AadTokenValidationParametersExtension.xml | 2 + .../CanonicalizingTransfrom.xml | 6 ++ .../DSigElement.xml | 4 + .../DSigSerializer.xml | 17 ++++ .../DelegatingXmlDictionaryReader.xml | 46 +++++++++++ .../DelegatingXmlDictionaryWriter.xml | 31 ++++++++ .../EnvelopedSignatureReader.xml | 7 ++ .../EnvelopedSignatureTransform.xml | 4 + .../EnvelopedSignatureWriter.xml | 10 +++ .../ExclusiveCanonicalizationTransform.xml | 5 ++ .../IXmlElementReader.xml | 4 + .../IssuerSerial.xml | 6 ++ .../Microsoft.IdentityModel.Xml/KeyInfo.xml | 10 +++ .../RSAKeyValue.xml | 6 ++ .../Microsoft.IdentityModel.Xml/Reference.xml | 12 +++ .../Microsoft.IdentityModel.Xml/Signature.xml | 8 ++ .../SignedInfo.xml | 8 ++ .../Microsoft.IdentityModel.Xml/Transform.xml | 4 + .../TransformFactory.xml | 7 ++ .../WsAddressing+Elements.xml | 3 + .../WsAddressing.xml | 3 + .../WsPolicy+Elements.xml | 2 + .../Microsoft.IdentityModel.Xml/WsPolicy.xml | 3 + .../WsTrustConstants+Elements.xml | 11 +++ .../WsTrustConstants+Namespaces.xml | 4 + .../WsTrustConstants.xml | 1 + .../WsTrustConstants_1_3+Actions.xml | 2 + .../WsTrustConstants_1_3.xml | 3 + .../WsTrustConstants_1_4+Actions.xml | 2 + .../WsTrustConstants_1_4.xml | 3 + .../WsTrustConstants_2005+Actions.xml | 2 + .../WsTrustConstants_2005.xml | 3 + .../WsUtility+Elements.xml | 3 + .../Microsoft.IdentityModel.Xml/WsUtility.xml | 3 + .../Microsoft.IdentityModel.Xml/X509Data.xml | 11 +++ .../XmlException.xml | 5 ++ .../XmlReadException.xml | 5 ++ .../XmlSignatureConstants+Attributes.xml | 9 +++ .../XmlSignatureConstants+Elements.xml | 29 +++++++ .../XmlSignatureConstants.xml | 13 ++++ .../XmlTokenStream.xml | 7 ++ .../XmlTokenStreamReader.xml | 4 + .../Microsoft.IdentityModel.Xml/XmlUtil.xml | 17 ++++ .../XmlValidationException.xml | 5 ++ .../XmlWriteException.xml | 5 ++ .../msal-web-dotnet-latest.json | 2 +- .../Deserializer.xml | 1 + .../JsonClaimValueTypes.xml | 4 + .../JsonExtensions.xml | 7 ++ .../JwtConstants.xml | 8 ++ .../JwtHeader.xml | 25 ++++++ .../JwtHeaderParameterNames.xml | 16 ++++ .../JwtPayload.xml | 30 +++++++ .../JwtRegisteredClaimNames.xml | 28 +++++++ .../JwtSecurityToken.xml | 35 +++++++++ .../JwtSecurityTokenHandler.xml | 46 +++++++++++ .../Serializer.xml | 1 + 340 files changed, 3089 insertions(+), 32 deletions(-) diff --git a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml index dd28c8feb..4545597b2 100644 --- a/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml +++ b/dotnet/xml/FrameworksIndex/msal-web-dotnet-latest.xml @@ -1,22 +1,22 @@  - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index deebe8a5a..ddb0a419a 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - +
@@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index 0821d268c..c57d11902 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index d65851628..28e9c81ff 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 717521f9c..003f6f605 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml index ba1bf9ccb..dc7ed9d56 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/EventLogLevel.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Enum @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -100,6 +103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml index 3693d9f16..b99382fc8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/IIdentityLogger.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml index ff6a731e0..62985c482 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ITelemetryClient.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -173,6 +178,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -205,6 +211,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml index 70188d0a3..586c4fbaa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/LogEntry.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.EventLogLevel @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml index 41c4abe70..9537bc357 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullIdentityModelLogger.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger @@ -79,6 +81,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -114,6 +117,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml index c64149757..dac7dbae1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/NullTelemetryClient.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -50,6 +51,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -81,6 +83,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -109,6 +112,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.NullTelemetryClient @@ -141,6 +145,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -173,6 +178,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -242,6 +249,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml index a07f1ab21..1fd6520bd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/ObservabilityConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml index c67157ed6..6de510747 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Abstractions/TelemetryEventDetails.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object> @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -226,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -261,6 +269,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -296,6 +305,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -331,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml index 637d95b71..ba6ae511f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonClaimValueTypes.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml index 05b7db32a..99de77db8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebToken.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -85,6 +87,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -124,6 +127,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -194,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -230,6 +236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -266,6 +273,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -302,6 +310,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -336,6 +345,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -373,6 +383,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -408,6 +419,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -441,6 +453,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -474,6 +487,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -508,6 +522,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -541,6 +556,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -577,6 +593,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.Claim @@ -617,6 +634,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -661,6 +679,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -705,6 +724,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -741,6 +761,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -777,6 +798,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -813,6 +835,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -844,6 +867,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -875,6 +899,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -911,6 +936,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -947,6 +973,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -984,6 +1011,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1015,6 +1043,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1048,6 +1077,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1077,6 +1107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1109,6 +1140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1150,6 +1182,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1195,6 +1228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1240,6 +1274,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1283,6 +1318,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1312,6 +1348,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1343,6 +1380,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -1379,6 +1417,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -1415,6 +1454,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1451,6 +1491,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml index bd8a57fd9..42d2c4297 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JsonWebTokenHandler.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -147,6 +151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -178,6 +183,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -215,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -254,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -289,6 +297,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -325,6 +334,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -362,6 +372,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -400,6 +411,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -438,6 +450,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -480,6 +493,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -519,6 +533,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -559,6 +574,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -601,6 +617,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -645,6 +662,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -687,6 +705,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -733,6 +752,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -781,6 +801,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -816,6 +837,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -839,6 +861,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -869,6 +892,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -909,6 +933,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -951,6 +976,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -994,6 +1020,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1032,6 +1059,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -1057,6 +1085,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1088,6 +1117,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.JsonWebTokens.JsonWebToken @@ -1130,6 +1160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1169,6 +1200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1201,6 +1233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1233,6 +1266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -1265,6 +1299,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -1297,6 +1332,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1333,6 +1369,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml index 779208294..efa602632 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtConstants.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +203,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -228,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -259,6 +267,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -290,6 +299,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -320,6 +330,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml index d6414e4c4..851ac8eae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtHeaderParameterNames.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ValueType @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -168,6 +173,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -198,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -228,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -258,6 +266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -288,6 +297,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -318,6 +328,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -348,6 +359,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +391,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -409,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -439,6 +453,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -469,6 +484,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml index 289f5eb99..7d2df64e5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtRegisteredClaimNames.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ValueType @@ -49,6 +50,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -79,6 +81,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +203,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -227,6 +234,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -257,6 +265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -287,6 +296,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -317,6 +327,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -347,6 +358,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -377,6 +389,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -437,6 +451,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -467,6 +482,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -497,6 +513,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -527,6 +544,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -557,6 +575,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +606,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -615,6 +635,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -645,6 +666,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -675,6 +697,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -705,6 +728,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -735,6 +759,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -763,6 +788,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -793,6 +819,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -823,6 +850,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -853,6 +881,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -881,6 +910,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml index e30ffb391..e834cb46c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.JsonWebTokens/JwtTokenUtilities.xml @@ -16,6 +16,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -151,6 +155,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -186,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -221,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Text.RegularExpressions.Regex @@ -251,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Text.RegularExpressions.Regex diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml index f02c4e532..c013496ba 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultCryptoProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -122,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -167,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml index 87e739676..693c6ba07 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultKeyWrapProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -195,6 +201,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -229,6 +236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml index e55c5a57a..abd0bcb3d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey+AuthenticationCallback.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml index 5f8ced075..2207d9dd5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -100,6 +103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey+AuthenticationCallback @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -158,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml index c5a3a740d..76b2d5851 100644 --- a/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.KeyVaultExtensions/KeyVaultSignatureProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -78,6 +80,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -145,6 +149,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -183,6 +188,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml index a77ef4c15..d63ff7387 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/ISafeLogSecurityArtifact.xml @@ -9,6 +9,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -32,6 +33,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml index d36a74941..dffad62a8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelEventSource.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Diagnostics.Tracing.EventSource @@ -49,6 +50,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -78,6 +80,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Logging.IdentityModelEventSource @@ -160,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Diagnostics.Tracing.EventLevel @@ -189,6 +195,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -218,6 +225,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -264,6 +272,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -319,6 +328,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -358,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -405,6 +416,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -443,6 +455,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -490,6 +503,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -528,6 +542,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -575,6 +590,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -613,6 +629,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -660,6 +677,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -698,6 +716,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -745,6 +764,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -783,6 +803,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml index 8c3027120..91f1ce159 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/IdentityModelTelemetryUtil.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -78,6 +80,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml index e3581de06..1f698e410 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LogHelper.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -157,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -208,6 +213,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -259,6 +265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -317,6 +324,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -370,6 +378,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -430,6 +439,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -490,6 +500,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -552,6 +563,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ArgumentNullException @@ -585,6 +597,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -632,6 +645,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -681,6 +695,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -730,6 +745,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -786,6 +802,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -837,6 +854,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -895,6 +913,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -953,6 +972,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -1013,6 +1033,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -1046,6 +1067,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -1081,6 +1103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Abstractions.IIdentityLogger @@ -1110,6 +1133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1151,6 +1175,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1192,6 +1217,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1233,6 +1259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -1264,6 +1291,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml index d62a850e3..dd1272686 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/LoggerContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Guid @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -214,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml index 4e46c6050..9e3dff033 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Logging/TextWriterEventListener.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Diagnostics.Tracing.EventListener @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -154,6 +159,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -183,6 +189,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml index 23fb07888..575f0f1e0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.LoggingExtensions/IdentityLoggerAdapter.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -79,6 +81,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -114,6 +117,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml index 7c23e81c6..59f0d9de8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.ManagedKeyVaultSecurityKey/ManagedKeyVaultSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.KeyVaultExtensions.KeyVaultSecurityKey @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml index c11ed6c31..f34cdbc80 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/InvalidConfigurationException.xml @@ -9,6 +9,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -38,6 +39,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -59,6 +61,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +86,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -109,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml index 47e2a09f3..39aaa2a26 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.Configuration/LastKnownGoodConfigurationCacheOptions.xml @@ -13,6 +13,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml index af368d0c4..fa18def4c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/OpenIdConnectConfigurationValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml index 5e4bed60e..bd35b97f5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/ActiveDirectoryOpenIdConnectEndpoints.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml index 4d6e1bc5b..a00ceb0bd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/IdTokenValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml index 70bec6dec..33715b6c8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -121,6 +125,7 @@ Microsoft.IdentityModel.Protocols.OpenIdConnect 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -150,6 +155,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -179,6 +185,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -208,6 +215,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -237,6 +245,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -266,6 +275,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -295,6 +305,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -324,6 +335,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -353,6 +365,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration @@ -389,6 +402,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -418,6 +432,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -447,6 +462,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -476,6 +492,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -505,6 +522,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -534,6 +552,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -563,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -592,6 +612,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -621,6 +642,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -650,6 +672,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -679,6 +702,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -708,6 +732,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -737,6 +762,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -766,6 +792,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -794,6 +821,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -823,6 +851,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -852,6 +881,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -881,6 +911,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -910,6 +941,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -939,6 +971,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -968,6 +1001,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -997,6 +1031,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -1026,6 +1061,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1055,6 +1091,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1084,6 +1121,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1113,6 +1151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -1142,6 +1181,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -1171,6 +1211,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -1200,6 +1241,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1229,6 +1271,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1267,6 +1310,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1305,6 +1349,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1343,6 +1388,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1381,6 +1427,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1419,6 +1466,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1457,6 +1505,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1495,6 +1544,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1533,6 +1583,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1571,6 +1622,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1609,6 +1661,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1647,6 +1700,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1685,6 +1739,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1723,6 +1778,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1761,6 +1817,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1799,6 +1856,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1837,6 +1895,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1875,6 +1934,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1913,6 +1973,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1951,6 +2012,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1989,6 +2051,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2027,6 +2090,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2065,6 +2129,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2103,6 +2168,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2141,6 +2207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2179,6 +2246,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -2208,6 +2276,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2237,6 +2306,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -2266,6 +2336,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2295,6 +2366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2324,6 +2396,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2353,6 +2426,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -2382,6 +2456,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2411,6 +2486,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2440,6 +2516,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -2469,6 +2546,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml index 1e6ab36f7..ff58aa853 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectConfigurationRetriever.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -144,6 +148,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> @@ -185,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml index d6d01f5f8..e20025bf1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectGrantTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml index c780ed979..40686bc19 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectMessage.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -220,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -278,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -307,6 +317,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -336,6 +347,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -365,6 +377,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -394,6 +407,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -423,6 +437,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -452,6 +467,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -482,6 +498,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -511,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -541,6 +559,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -571,6 +590,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -600,6 +620,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -629,6 +650,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -659,6 +681,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -688,6 +711,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -717,6 +741,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -746,6 +771,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -775,6 +801,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -804,6 +831,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -833,6 +861,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -862,6 +891,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -891,6 +921,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -920,6 +951,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -949,6 +981,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -978,6 +1011,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1007,6 +1041,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1036,6 +1071,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1065,6 +1101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1094,6 +1131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1123,6 +1161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1152,6 +1191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1181,6 +1221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -1210,6 +1251,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1239,6 +1281,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1268,6 +1311,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1297,6 +1341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1326,6 +1371,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1355,6 +1401,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1384,6 +1431,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1413,6 +1461,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1442,6 +1491,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1471,6 +1521,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1500,6 +1551,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1529,6 +1581,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1558,6 +1611,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1587,6 +1641,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1616,6 +1671,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml index bfeea330c..14658bb5f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectParameterNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -329,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -355,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -433,6 +449,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +476,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -485,6 +503,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -511,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -537,6 +557,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -563,6 +584,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -589,6 +611,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -615,6 +638,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -641,6 +665,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -667,6 +692,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -693,6 +719,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -719,6 +746,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -745,6 +773,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -771,6 +800,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -797,6 +827,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -823,6 +854,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -849,6 +881,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -875,6 +908,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -901,6 +935,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -927,6 +962,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -953,6 +989,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -979,6 +1016,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1005,6 +1043,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1031,6 +1070,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1057,6 +1097,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1083,6 +1124,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1109,6 +1151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml index 0c180bed9..2a7d73082 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectPrompt.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml index 59e1c3766..6d994c257 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml index 608cbf8d3..44f3e3070 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidAtHashException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml index 88cde5695..2fe887622 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidCHashException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml index 70da67e5d..a853ff325 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidNonceException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml index a7256bb75..5a06aeebc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolInvalidStateException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectProtocolException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml index bb62536b9..d95e2aacc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidationContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -184,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -213,6 +220,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml index a88b45eac..b989c35a3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectProtocolValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.HashAlgorithm @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -220,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.IdTokenValidator @@ -249,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -279,6 +288,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -314,6 +324,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -349,6 +360,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -384,6 +396,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -419,6 +432,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -454,6 +468,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -489,6 +504,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -524,6 +540,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -559,6 +576,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -588,6 +606,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -624,6 +643,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -658,6 +678,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -692,6 +713,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -726,6 +748,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -758,6 +781,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -793,6 +817,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -827,6 +852,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -861,6 +887,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml index 765c4459c..e1c837cf7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectRequestType.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Enum @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType @@ -100,6 +103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectRequestType diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml index 6db044ff4..bc9db5534 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseMode.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml index e49ac7f99..ac9befac5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectResponseType.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -248,6 +256,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml index 4f8b092eb..f3e2a2618 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectScope.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -213,6 +220,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml index 8d80a7ca9..b17d5d0a1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdConnectSessionProperties.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml index 30fec40eb..591b18c63 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.OpenIdConnect/OpenIdProviderMetadataNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -122,6 +126,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -148,6 +153,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -174,6 +180,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -200,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -226,6 +234,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -252,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -278,6 +288,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -304,6 +315,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -330,6 +342,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -356,6 +369,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -382,6 +396,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -408,6 +423,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -434,6 +450,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -460,6 +477,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -486,6 +504,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -512,6 +531,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -538,6 +558,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -564,6 +585,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -590,6 +612,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -616,6 +639,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -642,6 +666,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -668,6 +693,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -694,6 +720,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -720,6 +747,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -746,6 +774,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -772,6 +801,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -798,6 +828,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -824,6 +855,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -850,6 +882,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -876,6 +909,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -902,6 +936,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -928,6 +963,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -954,6 +990,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -980,6 +1017,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1006,6 +1044,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1032,6 +1071,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1058,6 +1098,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1084,6 +1125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1110,6 +1152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1136,6 +1179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1162,6 +1206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1188,6 +1233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1214,6 +1260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml index f14755be1..c50859a4e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/CnfDecryptionKeysResolverAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml index ec9b9b4de..9306ecc1e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ConfirmationClaimTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -100,6 +103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml index f0f41eeaf..9c851f96b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/HttpClientProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml index d3a353c8b..aa4304abf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/NonceValidatorAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml index fde00279c..5bf032b9e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml index 41dd78117..495e80ef2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/PopKeyResolverFromKeyIdAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml index 5f758e8f0..066fc8155 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/ReplayValidatorAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml index 47a3ce14b..43c8ca6ec 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignatureValidatorAsync.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml index e033ac0b9..4dbbd3d2a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestClaimTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -183,6 +189,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -211,6 +218,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -239,6 +247,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -267,6 +276,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml index b134b1274..fc4d5b879 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml index 3055da668..d9530c2d4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml index 8a6d78fed..91984bf96 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestCreationParameters.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -214,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -243,6 +251,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -272,6 +281,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -301,6 +311,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -330,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -358,6 +370,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml index 26e40154c..26a852f44 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestDescriptor.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -80,6 +82,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -118,6 +121,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -178,6 +183,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -240,6 +247,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -269,6 +277,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -298,6 +307,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestCreationParameters @@ -327,6 +337,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml index 81fb51db2..f3d5cb3d4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationResult> @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.SecurityToken> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml index 8f8c749fc..c8985722a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidAtClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml index 76cf05b1a..311128e40 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidBClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml index 441189fd3..5bf77204b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidCnfClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml index ae3d7fb00..86559504a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidHClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml index 6c4a6c90d..aa051a057 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidMClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml index bcfbaaaa3..27b42e691 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidNonceClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml index 2e3240dea..e4194bf4f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml index cb01b1116..d542ace17 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidPopKeyException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml index cd98ddb20..e36c9defa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidQClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml index 6b003e38c..71dc0109a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidSignatureException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml index c80c11181..4a59ddeb0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidTsClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml index fa373678e..191dec373 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestInvalidUClaimException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml index f90e6002e..afd196eb7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestUtilities.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -109,6 +112,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.HttpRequestData> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml index a35007cec..543a40e4b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -111,6 +114,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -146,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -183,6 +188,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -212,6 +218,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CallContext @@ -241,6 +248,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.HttpRequestData @@ -270,6 +278,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -299,6 +308,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestValidationParameters diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml index d0576c078..6cde37caf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml index d73feabc6..6c83774dd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationParameters.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -124,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -184,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.CnfDecryptionKeysResolverAsync @@ -213,6 +220,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -241,6 +249,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.HttpClientProvider @@ -270,6 +279,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.NonceValidatorAsync @@ -299,6 +309,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverAsync @@ -328,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.PopKeyResolverFromKeyIdAsync @@ -357,6 +369,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.ReplayValidatorAsync @@ -386,6 +399,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -415,6 +429,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignatureValidatorAsync @@ -444,6 +459,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -473,6 +489,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -502,6 +519,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -531,6 +549,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -560,6 +579,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -589,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -618,6 +639,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -649,6 +671,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -678,6 +701,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -707,6 +731,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml index 492deec28..64a01d389 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.SignedHttpRequest/SignedHttpRequestValidationResult.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenValidationResult @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -124,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -153,6 +158,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -182,6 +188,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml index 1d3b0caee..a63c8365c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/SecurityTokenServiceTypeRoleDescriptor.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -60,6 +62,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -90,6 +93,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.List<Microsoft.IdentityModel.Xml.KeyInfo> @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml index 0f1b25ed8..854f978d5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Signature @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml index 5d933e2a6..6dc209673 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationRetriever.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -146,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> @@ -187,6 +192,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml index 13536d317..a2ce9ea6a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConfigurationValidator.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -34,6 +35,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -55,6 +57,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml index 662545c4b..919465bb7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Attributes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml index 29b62ef37..4771f71d4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -167,6 +173,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -193,6 +200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml index e53003d52..c00ffadc6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+KeyUse.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml index 6dd023c2e..82cd363f8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Namespaces.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml index f760a0282..c6df3c1c2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+Types.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml index 18e202fe9..7a2207f4d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationActions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml index db3a36749..b3306dd99 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationFaultCodes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml index 82dc756b4..248f50309 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants+WsFederationParameterNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -329,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -355,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -433,6 +449,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +476,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -485,6 +503,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -511,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -537,6 +557,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml index 236e7eed4..63f023340 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml index 31be500a0..c2efc3f1b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml index ba9816123..4257f85c7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMessage.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.AuthenticationProtocolMessage @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -186,6 +192,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationMessage @@ -253,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -284,6 +293,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -315,6 +325,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -344,6 +355,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -373,6 +385,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -402,6 +415,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +445,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -460,6 +475,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -489,6 +505,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -518,6 +535,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -547,6 +565,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -576,6 +595,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -605,6 +625,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -634,6 +655,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -663,6 +685,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -692,6 +715,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -721,6 +745,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -750,6 +775,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -779,6 +805,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -808,6 +835,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -837,6 +865,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -866,6 +895,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -895,6 +925,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -924,6 +955,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml index 72f430eae..7373d4cc1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationMetadataSerializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -237,6 +244,7 @@ Microsoft.IdentityModel.Protocols.WsFederation 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -272,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.SecurityTokenServiceTypeRoleDescriptor @@ -309,6 +318,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml index 49979b1a9..3fb1e5f4e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols.WsFederation/WsFederationReadException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.WsFederation.WsFederationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml index 5400219db..3a1b68a98 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/AuthenticationProtocolMessage.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -162,6 +167,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -192,6 +198,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -221,6 +228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -284,6 +293,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -314,6 +324,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -344,6 +355,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -374,6 +386,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -409,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml index a2d9aec1c..37304deb1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationManager`1.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -55,6 +56,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -86,6 +88,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -120,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -152,6 +156,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -188,6 +193,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -223,6 +229,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -261,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -289,6 +297,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -317,6 +326,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -350,6 +360,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<T> @@ -383,6 +394,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<T> @@ -416,6 +428,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -444,6 +457,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -475,6 +489,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml index e2f4da61a..679e69b82 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/ConfigurationValidationResult.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml index a9bc9cf4f..85d44375e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/FileDocumentRetriever.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml index fbbb5b5a2..eb4813f00 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpDocumentRetriever.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<System.String> @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -228,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -257,6 +265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml index f77efdbc9..85e13db75 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/HttpRequestData.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Collections.Generic.IEnumerable<System.String>> @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -214,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml index a033657fb..1d04df6e0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationManager`1.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<T> @@ -86,6 +88,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml index ec27e41c3..e6293d704 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationRetriever`1.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<T> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml index 6a5619aaa..c998f3e33 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IConfigurationValidator`1.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Protocols.ConfigurationValidationResult diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml index 945cb452d..314bb361a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/IDocumentRetriever.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml index 63fc9ccd6..2dc7b8176 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/StaticConfigurationManager`1.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -56,6 +57,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -85,6 +87,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -122,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<T> @@ -159,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml index f39a3d001..b7642fbee 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Protocols/X509CertificateValidationMode.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml index bd53e2ebf..27e97adbe 100644 --- a/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.TestExtensions/TestTokenCreator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -64,6 +66,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -91,6 +94,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -175,6 +181,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -206,6 +213,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -234,6 +242,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -265,6 +274,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -296,6 +306,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenDescriptor @@ -324,6 +335,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -352,6 +364,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -380,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -408,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -436,6 +451,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -464,6 +480,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -492,6 +509,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -520,6 +538,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -548,6 +567,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -576,6 +596,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -604,6 +625,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -632,6 +654,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -660,6 +683,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -687,6 +711,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml index f7d2b024f..685f847da 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Configuration/LKGConfigurationCacheOptions.xml @@ -12,6 +12,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -39,6 +40,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -61,6 +63,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -88,6 +91,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -114,6 +118,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -141,6 +146,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -168,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.TaskCreationOptions diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml index 1d3202879..d5498af59 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/AuthenticationInformation.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -248,6 +256,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml index 9e77426d5..aaea5af17 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/ClaimProperties.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml index bc6b46e8b..8d7c325c1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAction.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml index 1ce6488d3..6aacdb5f2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAdvice.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -194,6 +200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml index d551ca3c0..e959c237d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAssertion.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +85,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -114,6 +117,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -143,6 +147,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -172,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -231,6 +238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -260,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -289,6 +298,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -320,6 +330,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -351,6 +362,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Signature @@ -380,6 +392,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -409,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml index 5ca2b5d86..762231cf2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttribute.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -78,6 +80,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -111,6 +114,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -140,6 +144,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +205,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -228,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -257,6 +265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml index 68fcfa9f6..ff4bcc8e7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer+AttributeKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -139,6 +143,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml index 014cf3271..2e651cb5c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeKeyComparer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml index d66fdefbe..d62019195 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAttributeStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml index fcc9c188f..385d3a404 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAudienceRestrictionCondition.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml index 44273f8a0..6b955d5aa 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthenticationStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +85,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -112,6 +115,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -142,6 +146,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding> @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml index 705502117..d4ad9e62c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorityBinding.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlQualifiedName @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml index 249496d59..30c2dd2f4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlAuthorizationDecisionStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubjectStatement @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -80,6 +82,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -119,6 +122,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAction> @@ -148,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -177,6 +182,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -206,6 +212,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -235,6 +242,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml index dd9005246..55d570c5d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlCondition.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml index ac643c2ac..2c2ddbe72 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConditions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlCondition> @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml index 9dfc6c257..001c8e07b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AccessDecision.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml index d782445d1..7e9042603 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+AuthenticationMethods.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -94,6 +97,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -120,6 +124,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -146,6 +151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -172,6 +178,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -198,6 +205,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -224,6 +232,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -250,6 +259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -276,6 +286,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -302,6 +313,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -328,6 +340,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml index d3bdcc06c..853695c0b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants+Types.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -275,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -301,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -327,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -405,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -457,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -483,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -509,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -535,6 +555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -561,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -613,6 +636,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -639,6 +663,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -665,6 +690,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml index ebb7c8bd5..907d80b45 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String[] @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -329,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -355,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -433,6 +449,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +476,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml index ff317795f..838a0c0ae 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlDoNotCacheCondition.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml index 9b4ccc20b..631c7c94a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlEvidence.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -139,6 +143,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -168,6 +173,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAssertion> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml index bcf7579ba..2b2829ae8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityToken.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -184,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -213,6 +220,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -242,6 +250,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -271,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml index 62b8d5ea1..49df97b31 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml index 44ccb15b1..7029399c2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -230,6 +237,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlAttribute> @@ -265,6 +273,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -298,6 +307,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -335,6 +345,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -374,6 +385,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -412,6 +424,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -445,6 +458,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -483,6 +497,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -517,6 +532,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml.SamlStatement> @@ -561,6 +577,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -602,6 +619,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -636,6 +654,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -672,6 +691,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -706,6 +726,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -744,6 +765,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -781,6 +803,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -817,6 +840,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -853,6 +877,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> @@ -891,6 +916,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -929,6 +955,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -964,6 +991,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -999,6 +1027,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1034,6 +1063,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1068,6 +1098,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1104,6 +1135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1143,6 +1175,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEqualityComparer<Microsoft.IdentityModel.Tokens.Saml.SamlSubject> @@ -1172,6 +1205,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSerializer @@ -1202,6 +1236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1241,6 +1276,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -1270,6 +1306,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1308,6 +1345,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1345,6 +1383,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1384,6 +1423,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1420,6 +1460,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1456,6 +1497,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1496,6 +1538,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityToken @@ -1540,6 +1583,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1579,6 +1623,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1618,6 +1663,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1652,6 +1698,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1690,6 +1737,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1725,6 +1773,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml index 8992d1403..53e85d195 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenReadException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml index 07baf30a8..83ccf1de9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSecurityTokenWriteException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml index d934addff..59fd9833c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSerializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAction @@ -160,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAdvice @@ -201,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAssertion @@ -235,6 +242,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttribute @@ -273,6 +281,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAttributeStatement @@ -308,6 +317,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAudienceRestrictionCondition @@ -343,6 +353,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthenticationStatement @@ -378,6 +389,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorityBinding @@ -411,6 +423,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlAuthorizationDecisionStatement @@ -446,6 +459,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlCondition @@ -479,6 +493,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlConditions @@ -515,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlDoNotCacheCondition @@ -548,6 +564,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlEvidence @@ -581,6 +598,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -619,6 +637,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject @@ -652,6 +671,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -687,6 +707,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -722,6 +743,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -758,6 +780,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -794,6 +817,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -830,6 +854,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -866,6 +891,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -901,6 +927,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -937,6 +964,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -973,6 +1001,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1008,6 +1037,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1043,6 +1073,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1078,6 +1109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1114,6 +1146,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1149,6 +1182,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml index 8c3bd4836..448861da4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml index cbaabd84d..452722d66 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubject.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -142,6 +146,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -229,6 +236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -258,6 +266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -287,6 +296,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -316,6 +326,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -345,6 +356,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml index 75e9db3e9..feeca33ee 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml/SamlSubjectStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlStatement @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml.SamlSubject diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml index 9b28e38ba..4859f29a2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/AuthenticationInformation.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml index b799b7f8b..fbde72ea4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/ClaimProperties.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml index 9d8768ea7..7b0327eba 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Action.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -109,6 +112,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml index a8e3bbe6f..4126756f1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Advice.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -130,6 +134,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml index 7030a44a4..e713be49f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Assertion.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -133,6 +137,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -163,6 +168,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -193,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -222,6 +229,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -251,6 +259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -281,6 +290,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Signature @@ -310,6 +320,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -339,6 +350,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -368,6 +380,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -397,6 +410,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml index d78bc74b5..03a2bf3a0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Attribute.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -138,6 +142,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +203,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -226,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -256,6 +264,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -285,6 +294,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml index 1dcae36cc..1b709a669 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AttributeStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml index 48d2e7596..1a64afbe5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AudienceRestriction.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml index 3c9e22d95..5fc520054 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -51,6 +52,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -137,6 +141,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.Uri> @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml index 6fc86e6c6..edf2746db 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthenticationStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -196,6 +202,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -228,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml index 3a9aac5ab..cb59bc8b4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2AuthorizationDecisionStatement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -78,6 +80,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -112,6 +115,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Action> @@ -142,6 +146,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +176,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -201,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml index 6a05d1463..ba15d2dab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Conditions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction> @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -193,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -223,6 +230,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml index 83b14eb16..e846d67bd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+AccessDecision.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml index e7add3b89..238eef723 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Attributes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -275,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -301,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -327,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -405,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -457,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -483,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -509,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -535,6 +555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -561,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -613,6 +636,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -639,6 +663,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -665,6 +690,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -691,6 +717,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml index d16222c0c..f60829025 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+ConfirmationMethods.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -124,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -150,6 +155,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -179,6 +185,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml index 6ffefa0b4..40afaa7c0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -275,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -301,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -327,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -405,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -457,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -483,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -509,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -535,6 +555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -561,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -613,6 +636,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -639,6 +663,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -665,6 +690,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -691,6 +717,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -717,6 +744,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -743,6 +771,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -769,6 +798,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -795,6 +825,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -821,6 +852,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -847,6 +879,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -873,6 +906,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml index 62ca23bb8..794506fab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+NameIdentifierFormats.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -189,6 +195,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -215,6 +222,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -245,6 +253,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -271,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -302,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -328,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -358,6 +370,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -384,6 +397,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -413,6 +427,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -439,6 +454,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -468,6 +484,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -494,6 +511,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -524,6 +542,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml index 6add4c936..dd4eed076 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants+Types.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -275,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -301,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -327,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -405,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -457,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -483,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -509,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -535,6 +555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -561,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -613,6 +636,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml index 6064f646b..aaa26e2b2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Constants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String[] @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml index 489f8b38f..60545f68d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Evidence.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Id> @@ -195,6 +201,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion> @@ -224,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.Uri> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml index b16461b20..7d1234e05 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Id.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml index 5c5aa70bb..9dc64b89e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2NameIdentifier.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -196,6 +202,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -226,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -256,6 +264,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml index 10a178848..c14f413af 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2ProxyRestriction.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.Uri> @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.Int32> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml index 0396fd60e..81a8a549e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityToken.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -160,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -189,6 +195,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -218,6 +225,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -247,6 +255,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml index b1c0c6305..f1fafbae8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml index 7aab799dd..326a67539 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> @@ -253,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -289,6 +298,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -324,6 +334,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -359,6 +370,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -393,6 +405,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -426,6 +439,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -459,6 +473,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -497,6 +512,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -548,6 +564,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -583,6 +600,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -622,6 +640,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement> @@ -663,6 +682,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -697,6 +717,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -731,6 +752,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -767,6 +789,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -795,6 +818,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -833,6 +857,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -871,6 +896,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -907,6 +933,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -943,6 +970,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -980,6 +1008,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1015,6 +1044,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1050,6 +1080,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1085,6 +1116,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1119,6 +1151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1155,6 +1188,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1194,6 +1228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Serializer @@ -1224,6 +1259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1265,6 +1301,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -1294,6 +1331,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1332,6 +1370,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1369,6 +1408,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1405,6 +1445,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1444,6 +1485,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1480,6 +1522,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1520,6 +1563,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1555,6 +1599,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityToken @@ -1599,6 +1644,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1635,6 +1681,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1678,6 +1725,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1718,6 +1766,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1752,6 +1801,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1788,6 +1838,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1823,6 +1874,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml index 58edfe6d9..024a9358f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenReadException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml index a9110d02f..f2391c07e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SecurityTokenWriteException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml index a807da205..648b6a07b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Serializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Action @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Advice @@ -204,6 +210,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Assertion @@ -240,6 +247,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute @@ -279,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement @@ -314,6 +323,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -350,6 +360,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AudienceRestriction @@ -385,6 +396,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationContext @@ -422,6 +434,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthenticationStatement @@ -456,6 +469,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2AuthorizationDecisionStatement @@ -491,6 +505,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Conditions @@ -527,6 +542,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -562,6 +578,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Evidence @@ -595,6 +612,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -628,6 +646,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -662,6 +681,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -698,6 +718,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2ProxyRestriction @@ -735,6 +756,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Statement @@ -773,6 +795,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Subject @@ -810,6 +833,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation @@ -843,6 +867,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData @@ -879,6 +904,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectLocality @@ -912,6 +938,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -946,6 +973,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -981,6 +1009,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1018,6 +1047,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1053,6 +1083,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1089,6 +1120,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1125,6 +1157,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1159,6 +1192,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1194,6 +1228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1230,6 +1265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1265,6 +1301,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1301,6 +1338,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1336,6 +1374,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1371,6 +1410,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1406,6 +1446,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1440,6 +1481,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1478,6 +1520,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1512,6 +1555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1546,6 +1590,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1583,6 +1628,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml index efdc1f2b9..3f57afb4d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Statement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml index abdc0c69e..7ac9e9091 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2Subject.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmation> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml index e0ea38c86..58d99850f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmation.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2NameIdentifier @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2SubjectConfirmationData diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml index 242af93cd..e455c02dc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectConfirmationData.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.Saml2.Saml2Id @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.KeyInfo> @@ -158,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -188,6 +194,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -218,6 +225,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml index 3a1bfaeec..d1dade7dc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens.Saml2/Saml2SubjectLocality.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml index 387586a42..ed6f768c4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AlgorithmValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml index 60acf95b8..de8902024 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml index adea0f37c..85dd6bc99 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AsymmetricSignatureProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -118,6 +121,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -146,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.Dictionary<System.String,System.Int32> @@ -174,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -206,6 +212,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.HashAlgorithmName @@ -243,6 +250,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -272,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IReadOnlyDictionary<System.String,System.Int32> @@ -301,6 +310,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -336,6 +346,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -378,6 +389,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -418,6 +430,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml index e23d7251f..65f3629bb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AudienceValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml index 931c5ebc5..265eedc5b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -81,6 +83,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -139,6 +143,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -185,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -213,6 +219,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -245,6 +252,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -283,6 +291,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult @@ -325,6 +334,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -363,6 +373,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -398,6 +409,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -427,6 +439,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml index b95f2fc85..594fc37d4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/AuthenticatedEncryptionResult.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml index 6c2de93d6..e4ba9b811 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Base64UrlEncoder.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -143,6 +147,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -179,6 +184,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml index e6a7670e3..588ff6702 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -60,6 +62,7 @@ Microsoft.IdentityModel.Tokens 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -90,6 +93,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -176,6 +182,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml index 19f8dafbf..f60c79293 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/BaseConfigurationManager.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -124,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -152,6 +157,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -180,6 +186,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -208,6 +215,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.BaseConfiguration> @@ -243,6 +251,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -272,6 +281,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.BaseConfiguration @@ -301,6 +311,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -330,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -359,6 +371,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -387,6 +400,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -415,6 +429,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -444,6 +459,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -473,6 +489,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml index 7f89a1bb2..3ccbafbb2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CallContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Logging.LoggerContext @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml index e5193d3e6..552084710 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CollectionUtilities.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml index b76b5ade4..d6a1a3b0d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionAlgorithms.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml index 0ae655b0e..c36f46add 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CompressionProviderFactory.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ICompressionProvider @@ -160,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CompressionProviderFactory @@ -189,6 +195,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml index f186b1c31..4273d4e8e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCache.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -210,6 +216,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml index 574738907..27b4c718a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderCacheOptions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml index c8e525108..720e6c04e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/CryptoProviderFactory.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionProvider @@ -207,6 +213,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -252,6 +259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -299,6 +307,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -341,6 +350,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -385,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.HashAlgorithm @@ -424,6 +435,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.HashAlgorithm @@ -463,6 +475,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -505,6 +518,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -548,6 +562,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -591,6 +606,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -619,6 +635,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ICryptoProvider @@ -650,6 +667,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -679,6 +697,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -714,6 +733,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -743,6 +763,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -780,6 +801,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -821,6 +843,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -854,6 +877,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -888,6 +912,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -922,6 +947,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -955,6 +981,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml index 335ddc75d..c6b281d3e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DateTimeUtil.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -82,6 +84,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -115,6 +118,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -148,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -182,6 +187,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml index 70feea5c8..5aa7d20d3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/DeflateCompressionProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IO.Compression.CompressionLevel @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -238,6 +245,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml index 5c64e39bb..c024fa34d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ECDsaSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.ECDsa @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -229,6 +236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml index d6943b3ec..36bbf8dee 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EcdhKeyExchangeProvider.xml @@ -10,6 +10,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -35,6 +36,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml index 0aa625be8..41441e832 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EncryptingCredentials.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -80,6 +82,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -115,6 +118,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -150,6 +154,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -179,6 +184,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -237,6 +244,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -266,6 +274,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -295,6 +304,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml index d70f07b28..28eb85966 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/EpochTime.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int64 @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml index 457292096..589befc43 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICompressionProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml index 16ef40585..bcc740de3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ICryptoProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -84,6 +86,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -126,6 +129,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml index 8fbfa2040..2b4d3998a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ISecurityTokenValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml index 3b10f7a60..30f21c858 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ITokenReplayCache.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml index a53b72f1b..19b3d23c7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/InMemoryCryptoProviderCache.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -168,6 +173,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -201,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -239,6 +246,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -276,6 +284,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -318,6 +327,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml index c58ad3b30..59da72bdf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolver.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml index 8c998f179..9aaa69b38 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyResolverUsingConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml index 1ddaf6c44..59631b62a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml index c5928f553..f3c54cb36 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerSigningKeyValidatorUsingConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml index e357caa65..c51cd8787 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml index 42bb51733..e05a62d25 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/IssuerValidatorUsingConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml index 57ce57a66..9f6575391 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebAlgorithmsKeyTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml index a110ed814..6d0d6fe83 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -188,6 +194,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -218,6 +225,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -255,6 +263,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -284,6 +293,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -313,6 +323,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -342,6 +353,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -371,6 +383,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -400,6 +413,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -430,6 +444,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -488,6 +504,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.String> @@ -517,6 +534,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -546,6 +564,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -575,6 +594,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -604,6 +624,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -633,6 +654,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.String> @@ -662,6 +684,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -691,6 +714,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -720,6 +744,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -749,6 +774,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -781,6 +807,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -813,6 +840,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -843,6 +871,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -872,6 +901,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -901,6 +931,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.String> @@ -930,6 +961,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -959,6 +991,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -988,6 +1021,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1017,6 +1051,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml index 7d29e7d52..40c244382 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyConverter.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -100,6 +103,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -133,6 +137,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -200,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey @@ -233,6 +240,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml index 0032ae134..4b03ba62e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyECTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -122,6 +126,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml index a5102a7f2..cd232f7a0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyParameterNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -329,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -355,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -433,6 +449,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +476,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -485,6 +503,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -511,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -537,6 +557,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -563,6 +584,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -589,6 +611,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -615,6 +638,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -641,6 +665,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -667,6 +692,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml index eef4092e9..33de95882 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySet.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.JsonWebKeySet @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -199,6 +205,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -231,6 +238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Tokens.JsonWebKey> @@ -260,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml index 540531d92..448be3751 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeySetParameterNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml index 1f8a4434c..86dd46f82 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/JsonWebKeyUseNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml index 3c21d436d..784acfd62 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/KeyWrapProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -131,6 +135,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -159,6 +164,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -220,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -253,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml index a41cd41ec..c5fbab0e1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/LifetimeValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml index a4eb418fc..7f213e720 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/PrivateKeyStatus.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Enum @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml index dea397aef..d8b0cb161 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaKeyWrapProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -231,6 +238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -268,6 +276,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml index 97b1376ac..caf268382 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/RsaSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -231,6 +238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.RSAParameters @@ -260,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -290,6 +299,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.RSA diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml index 83374bfa8..3689a6572 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityAlgorithms.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -303,6 +314,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -329,6 +341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -355,6 +368,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +395,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +422,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -433,6 +449,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -459,6 +476,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -485,6 +503,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -511,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -537,6 +557,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -563,6 +584,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -589,6 +611,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -615,6 +638,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -641,6 +665,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -667,6 +692,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -693,6 +719,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -719,6 +746,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -745,6 +773,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -771,6 +800,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -797,6 +827,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -823,6 +854,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -849,6 +881,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -875,6 +908,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -901,6 +935,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -927,6 +962,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -953,6 +989,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -979,6 +1016,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1005,6 +1043,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1031,6 +1070,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1057,6 +1097,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1083,6 +1124,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1109,6 +1151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1135,6 +1178,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1161,6 +1205,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1187,6 +1232,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1213,6 +1259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1239,6 +1286,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1265,6 +1313,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1291,6 +1340,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1317,6 +1367,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1343,6 +1394,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1369,6 +1421,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1395,6 +1448,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1421,6 +1475,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1447,6 +1502,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1473,6 +1529,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1499,6 +1556,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1525,6 +1583,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1551,6 +1610,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml index f2d64fe6d..5ab4451ad 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -129,6 +133,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -158,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -220,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -249,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml index e632d6b4b..482940f66 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityKeyIdentifierClause.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml index f44c82b02..347a32920 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityToken.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -185,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -214,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -243,6 +251,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml index aa239cf65..8da10a86a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenArgumentException.xml @@ -9,6 +9,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ArgumentException @@ -38,6 +39,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -59,6 +61,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +86,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -109,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml index b67d997b0..f522364c7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenCompressionFailedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml index 1ff8650a4..23516f353 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecompressionFailedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml index f9b6123df..ea527dea7 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDecryptionFailedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml index 0275b4bbe..22228abc3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -193,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -222,6 +229,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -251,6 +259,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -280,6 +289,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -309,6 +319,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -338,6 +349,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -367,6 +379,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -396,6 +409,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -428,6 +442,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml index 8d4d2aefa..11ff32d90 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionFailedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml index f7a8df7d6..1c21f063b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenEncryptionKeyNotFoundException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenDecryptionFailedException @@ -49,6 +50,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml index a226a141e..7698e2452 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -166,6 +171,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml index b34f735f9..373a7eefd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenExpiredException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -162,6 +167,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml index 438626547..d5c4ccfb4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenHandler @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -144,6 +148,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -175,6 +180,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -205,6 +211,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKeyIdentifierClause @@ -242,6 +249,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -277,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -311,6 +320,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -347,6 +357,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -379,6 +390,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -415,6 +427,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -451,6 +464,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -484,6 +498,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml index ac98fdf35..ee04c8bc8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAlgorithmException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -198,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml index c4489d9fd..9a4aea07c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidAudienceException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -198,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml index 0d2b39462..3032ec462 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidIssuerException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -198,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml index b7d5a8b45..fc0ef0296 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidLifetimeException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> @@ -194,6 +200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -227,6 +234,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.DateTime> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml index cd835c585..5feb2c001 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSignatureException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml index dcb5b5969..52ff6bd58 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidSigningKeyException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -162,6 +167,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml index a62e2e342..4e7c6608e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenInvalidTypeException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -165,6 +170,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -198,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml index e4e409ca9..fcb52b129 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenKeyWrapException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml index aadd32d36..2ef41defc 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenMalformedException.xml @@ -9,6 +9,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenArgumentException @@ -38,6 +39,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -59,6 +61,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +86,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -109,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml index 569728721..17587679c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNoExpirationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml index 5846b9e27..3520ec829 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenNotYetValidException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -49,6 +50,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -133,6 +137,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -163,6 +168,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -196,6 +202,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml index fbf018ed0..1e7aa6f8d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayAddFailedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml index d9c8719ec..14a446d39 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenReplayDetectedException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenValidationException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml index b859d057e..50e6227b5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenSignatureKeyNotFoundException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml index 6c5602fd0..a159445b1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenUnableToValidateException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenInvalidSignatureException @@ -60,6 +61,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -86,6 +88,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -115,6 +118,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -146,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -177,6 +182,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -208,6 +214,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -241,6 +248,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml index b2552c8f6..348e8bbe9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SecurityTokenValidationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml index fb31f2b2d..6a69cd9b9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -80,6 +82,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -109,6 +112,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -138,6 +142,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderCache @@ -169,6 +174,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -197,6 +203,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -229,6 +236,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -258,6 +266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -291,6 +300,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -329,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -376,6 +387,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml index 906b3f7bd..ca3fe3e16 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml index 0602b475a..6b12997f0 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SignatureValidatorUsingConfiguration.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml index 302d2a77d..1e47c8b83 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SigningCredentials.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -141,6 +145,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -176,6 +181,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -206,6 +212,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -235,6 +242,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -264,6 +272,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -293,6 +302,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml index 5b0390fae..1feef74b4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricKeyWrapProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.KeyWrapProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.SymmetricAlgorithm @@ -202,6 +208,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -237,6 +244,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -266,6 +274,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -303,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml index 237fe01b5..d65372f5f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -133,6 +137,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -162,6 +167,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml index c31d40355..83cebb1ab 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/SymmetricSignatureProvider.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureProvider @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -77,6 +79,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -113,6 +116,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -141,6 +145,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -173,6 +178,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -211,6 +217,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.KeyedHashAlgorithm @@ -250,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -280,6 +288,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -314,6 +323,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -353,6 +363,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -393,6 +404,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -435,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml index 13be5b1ce..bd095ee4a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenContext.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CallContext @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml index 8c8c8daaf..f4f67948d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenDecryptionKeyResolver.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml index 4baf85ca0..3e20d7dc4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -125,6 +129,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -196,6 +202,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -223,6 +230,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -260,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml index 5a2631cdb..e022e1b79 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml index fcea41d1d..1098b68f5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenReplayValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml index 73ca71118..e37654e3d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationParameters.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AlgorithmValidator @@ -158,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AudienceValidator @@ -191,6 +197,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -221,6 +228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -258,6 +266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenValidationParameters @@ -288,6 +297,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.BaseConfigurationManager @@ -318,6 +328,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -355,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CryptoProviderFactory @@ -384,6 +396,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -413,6 +426,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -443,6 +457,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.TimeSpan @@ -471,6 +486,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -500,6 +516,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -536,6 +553,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -565,6 +583,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -595,6 +614,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -624,6 +644,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -653,6 +674,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolver @@ -686,6 +708,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyResolverUsingConfiguration @@ -722,6 +745,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -751,6 +775,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidator @@ -786,6 +811,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerSigningKeyValidatorUsingConfiguration @@ -823,6 +849,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerValidator @@ -858,6 +885,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.IssuerValidatorUsingConfiguration @@ -894,6 +922,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.LifetimeValidator @@ -927,6 +956,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -963,6 +993,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1000,6 +1031,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1032,6 +1064,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -1063,6 +1096,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -1092,6 +1126,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1129,6 +1164,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1165,6 +1201,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1201,6 +1238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1237,6 +1275,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1270,6 +1309,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Func<Microsoft.IdentityModel.Tokens.SecurityToken,System.String,System.String> @@ -1301,6 +1341,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1338,6 +1379,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureValidator @@ -1369,6 +1411,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SignatureValidatorUsingConfiguration @@ -1401,6 +1444,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1430,6 +1474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenDecryptionKeyResolver @@ -1461,6 +1506,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.SecurityKey> @@ -1490,6 +1536,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenReader @@ -1521,6 +1568,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ITokenReplayCache @@ -1550,6 +1598,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TokenReplayValidator @@ -1583,6 +1632,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TransformBeforeSignatureValidation @@ -1612,6 +1662,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1648,6 +1699,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.TypeValidator @@ -1683,6 +1735,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -1715,6 +1768,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1751,6 +1805,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1791,6 +1846,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1835,6 +1891,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1875,6 +1932,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1914,6 +1972,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1951,6 +2010,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -1990,6 +2050,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -2027,6 +2088,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -2057,6 +2119,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -2087,6 +2150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -2117,6 +2181,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -2147,6 +2212,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml index ad4ed3646..ed185d7db 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TokenValidationResult.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -184,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -213,6 +220,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.Object> @@ -242,6 +250,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -271,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.CallContext @@ -300,6 +310,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -329,6 +340,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml index 2049b5659..4402b0f9c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TransformBeforeSignatureValidation.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml index e726dde38..98b90439c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/TypeValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml index f100e0a10..d5c3815d4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/UniqueId.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Uri @@ -139,6 +143,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -170,6 +175,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml index 7863b8762..3a2faa190 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Utility.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -85,6 +87,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -118,6 +121,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -146,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -179,6 +184,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -213,6 +219,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml index ec9772e25..ff649b433 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/ValidationFailure.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Enum @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ValidationFailure @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.ValidationFailure diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml index b2259f16c..227e51dd5 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/Validators.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -82,6 +84,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -121,6 +124,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -161,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -199,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -243,6 +249,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -284,6 +291,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -325,6 +333,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml index 678a5a068..29542622c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509EncryptingCredentials.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -110,6 +113,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml index 89faa1637..0ae95ffd2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SecurityKey.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.AsymmetricSecurityKey @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.X509Certificates.X509Certificate2 @@ -163,6 +168,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -193,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -227,6 +234,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -258,6 +266,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -294,6 +303,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -323,6 +333,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -352,6 +363,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.PrivateKeyStatus @@ -382,6 +394,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.AsymmetricAlgorithm @@ -411,6 +424,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml index 23668258b..724be9965 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Tokens/X509SigningCredentials.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -75,6 +77,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -107,6 +110,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Cryptography.X509Certificates.X509Certificate2 diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml index ac937640c..9ac5a7fbf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadIssuerValidator.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -83,6 +85,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Validators.AadIssuerValidator @@ -125,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml index e25b5439d..fcb983590 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Validators/AadTokenValidationParametersExtension.xml @@ -8,6 +8,7 @@ Microsoft.IdentityModel.Validators 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -31,6 +32,7 @@ Microsoft.IdentityModel.Validators 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml index 583c5a7c8..85a0507b2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/CanonicalizingTransfrom.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -124,6 +128,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -153,6 +158,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml index 1d68e02b8..13ca5bb76 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigElement.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml index f57763673..4042c8d8b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DSigSerializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -161,6 +166,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -196,6 +202,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -232,6 +239,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Reference @@ -269,6 +277,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Signature @@ -306,6 +315,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -341,6 +351,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -378,6 +389,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -414,6 +426,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -443,6 +456,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -479,6 +493,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -515,6 +530,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -551,6 +567,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml index 678a9dd9f..42ee2ffb4 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryReader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryReader @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -130,6 +134,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -159,6 +164,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -188,6 +194,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -217,6 +224,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -246,6 +254,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -279,6 +288,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -313,6 +323,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -352,6 +363,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -382,6 +394,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -411,6 +424,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryReader @@ -440,6 +454,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -470,6 +485,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -499,6 +515,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -532,6 +549,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -566,6 +584,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -605,6 +624,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -637,6 +657,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -666,6 +687,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -695,6 +717,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -729,6 +752,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -761,6 +785,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -794,6 +819,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -829,6 +855,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -859,6 +886,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -889,6 +917,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -919,6 +948,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -948,6 +978,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -977,6 +1008,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlNameTable @@ -1006,6 +1038,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlNodeType @@ -1035,6 +1068,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1064,6 +1098,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1094,6 +1129,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -1126,6 +1162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -1163,6 +1200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -1200,6 +1238,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.ReadState @@ -1229,6 +1268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -1270,6 +1310,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1299,6 +1340,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryReader @@ -1328,6 +1370,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1357,6 +1400,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -1386,6 +1430,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1415,6 +1460,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlSpace diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml index 5306cca68..80bc6a68e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/DelegatingXmlDictionaryWriter.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryWriter @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryWriter @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -160,6 +165,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryWriter @@ -190,6 +196,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlDictionaryWriter @@ -219,6 +226,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -255,6 +263,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -287,6 +296,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -319,6 +329,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -355,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -387,6 +399,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -428,6 +441,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -457,6 +471,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -486,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -515,6 +531,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -547,6 +564,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -576,6 +594,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -610,6 +629,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -642,6 +662,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -678,6 +699,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -714,6 +736,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -743,6 +766,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -776,6 +800,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -813,6 +838,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.WriteState @@ -842,6 +868,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -874,6 +901,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -908,6 +936,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -940,6 +969,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -974,6 +1004,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml index 6e7f6b06a..e1626ee9b 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureReader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -167,6 +172,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -197,6 +203,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Signature diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml index 6677ea741..a8c27f4e9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureTransform.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Transform @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml index ad7303a00..cb7c635bf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/EnvelopedSignatureWriter.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryWriter @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -83,6 +85,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -121,6 +124,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -156,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigSerializer @@ -186,6 +191,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -218,6 +224,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -250,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -282,6 +290,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -315,6 +324,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml index 0c47d6cfc..864850e51 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/ExclusiveCanonicalizationTransform.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml index 9b0daec6e..3f5d35f4a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IXmlElementReader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.Object> @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml index 6ead293ac..7d4cb1b36 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/IssuerSerial.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml index 3560e38e6..10f2fb267 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/KeyInfo.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigElement @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -97,6 +100,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -126,6 +130,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -158,6 +163,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -187,6 +193,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -216,6 +223,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -245,6 +253,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.RSAKeyValue @@ -274,6 +283,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<Microsoft.IdentityModel.Xml.X509Data> diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml index 6451aadff..67b09db07 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/RSAKeyValue.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml index 1ddd42760..6ad49ed05 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Reference.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigElement @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Byte[] @@ -163,6 +168,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -193,6 +199,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +230,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlTokenStream @@ -253,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Transform> @@ -282,6 +291,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -311,6 +321,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -340,6 +351,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml index f618ea804..632556298 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Signature.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigElement @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.KeyInfo @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.SignedInfo @@ -187,6 +193,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -221,6 +228,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml index 940c0fe19..e4ecf782d 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/SignedInfo.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DSigElement @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -132,6 +136,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<Microsoft.IdentityModel.Xml.Reference> @@ -194,6 +200,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -224,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml index 399b9da41..fe636dca9 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/Transform.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -66,6 +68,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml index 34d9798af..9db5813fb 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/TransformFactory.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -40,6 +41,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -64,6 +66,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.TransformFactory @@ -92,6 +95,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.CanonicalizingTransfrom @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.Transform @@ -162,6 +167,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -195,6 +201,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml index 8a8a97eac..694877457 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml index 805c09ee3..aac7ae9fd 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsAddressing.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml index 7fcce536b..cc42d63a3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml index 5b808cf1d..cd914b34e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsPolicy.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml index c2e99587b..f53b8cfff 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -121,6 +125,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -147,6 +152,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -173,6 +179,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -199,6 +206,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -225,6 +233,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -251,6 +260,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -277,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml index 59e3f2237..6366d0f70 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants+Namespaces.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -95,6 +98,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml index 64c52fd8b..09d85142e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml index 008853c02..78d6556ea 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3+Actions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml index 4b19c880a..2653699e1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_3.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml index 85ea17b5a..ac7ba0537 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4+Actions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml index 27b6b0211..48bbe27ea 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_1_4.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml index 78328eeb3..474fa5ce3 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005+Actions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml index b3e2e9a34..05d671359 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsTrustConstants_2005.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml index b8da66b3d..79b052db1 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml index 38d39b218..a89e4e09a 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/WsUtility.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -69,6 +71,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml index 8666ccbfc..2be0e4ed2 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/X509Data.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -98,6 +101,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -128,6 +132,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ICollection<System.String> @@ -157,6 +162,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -186,6 +192,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -218,6 +225,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Int32 @@ -247,6 +255,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.IssuerSerial @@ -276,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -305,6 +315,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml index 7f88ec33c..a3d8c39bf 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml index b798365cc..96f047fd6 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlReadException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml index ba3f270b9..8cca7eb70 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Attributes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml index 1a68f35bb..06daaeb2c 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants+Elements.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -41,6 +42,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -93,6 +96,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -119,6 +123,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -145,6 +150,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -171,6 +177,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -197,6 +204,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -223,6 +231,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -249,6 +258,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -275,6 +285,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -301,6 +312,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -327,6 +339,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +366,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +393,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -405,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -431,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -457,6 +474,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -483,6 +501,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -509,6 +528,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -535,6 +555,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -561,6 +582,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -587,6 +609,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -613,6 +636,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -639,6 +663,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -665,6 +690,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -691,6 +717,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -717,6 +744,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -743,6 +771,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml index 09b500554..77de300d8 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlSignatureConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -44,6 +45,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -70,6 +72,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -96,6 +99,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -122,6 +126,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -148,6 +153,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -174,6 +180,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -200,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -226,6 +234,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -252,6 +261,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -278,6 +288,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -304,6 +315,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -330,6 +342,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml index 530978539..127dde04e 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStream.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -67,6 +69,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -102,6 +105,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -141,6 +145,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -180,6 +185,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -215,6 +221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml index 6483acf6f..7a5ed92ff 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlTokenStreamReader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.DelegatingXmlDictionaryReader @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -104,6 +107,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlTokenStream diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml index 2940817d1..adca6eb2f 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlUtil.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -79,6 +81,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -117,6 +120,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -154,6 +158,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlQualifiedName @@ -189,6 +194,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -223,6 +229,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -261,6 +268,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -303,6 +311,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -347,6 +356,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -389,6 +399,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -433,6 +444,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -475,6 +487,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Exception @@ -519,6 +532,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -552,6 +566,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Xml.XmlQualifiedName @@ -588,6 +603,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -626,6 +642,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml index 903b3ec2e..3a08e2727 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlValidationException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml index 6578bcbfd..6a50e6759 100644 --- a/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml +++ b/dotnet/xml/Microsoft.IdentityModel.Xml/XmlWriteException.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Xml.XmlException @@ -48,6 +49,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -74,6 +76,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -103,6 +106,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -134,6 +138,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 diff --git a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json index f9db068f4..97e50ab8f 100644 --- a/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json +++ b/dotnet/xml/PackageInformation/msal-web-dotnet-latest.json @@ -1 +1 @@ -{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.32.1","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file +{"msal-web-dotnet-latest":{"Microsoft.IdentityModel.Abstractions":{"Name":"Microsoft.IdentityModel.Abstractions","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.JsonWebTokens":{"Name":"Microsoft.IdentityModel.JsonWebTokens","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.KeyVaultExtensions":{"Name":"Microsoft.IdentityModel.KeyVaultExtensions","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Logging":{"Name":"Microsoft.IdentityModel.Logging","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.LoggingExtensions":{"Name":"Microsoft.IdentityModel.LoggingExtensions","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey":{"Name":"Microsoft.IdentityModel.ManagedKeyVaultSecurityKey","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.OpenIdConnect":{"Name":"Microsoft.IdentityModel.Protocols.OpenIdConnect","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.SignedHttpRequest":{"Name":"Microsoft.IdentityModel.Protocols.SignedHttpRequest","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols.WsFederation":{"Name":"Microsoft.IdentityModel.Protocols.WsFederation","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Protocols":{"Name":"Microsoft.IdentityModel.Protocols","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.TestExtensions":{"Name":"Microsoft.IdentityModel.TestExtensions","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens.Saml":{"Name":"Microsoft.IdentityModel.Tokens.Saml","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Tokens":{"Name":"Microsoft.IdentityModel.Tokens","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Validators":{"Name":"Microsoft.IdentityModel.Validators","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"Microsoft.IdentityModel.Xml":{"Name":"Microsoft.IdentityModel.Xml","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"},"System.IdentityModel.Tokens.Jwt":{"Name":"System.IdentityModel.Tokens.Jwt","Version":"6.32.2","Feed":"https://api.nuget.org/v3/index.json"}}} \ No newline at end of file diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml index 124fe7a42..95a10f7b4 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Deserializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml index 141cf694a..bcc35b49a 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonClaimValueTypes.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml index e2705b402..919d852f9 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JsonExtensions.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 T @@ -84,6 +86,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -117,6 +120,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -150,6 +154,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.Deserializer @@ -180,6 +185,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.Serializer @@ -210,6 +216,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml index b5d3db659..f934dc47e 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtConstants.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Object @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -183,6 +189,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -211,6 +218,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml index fe350540d..aaf9f81e1 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeader.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -47,6 +48,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -105,6 +108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -136,6 +140,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -170,6 +175,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -203,6 +209,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -239,6 +246,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -274,6 +282,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -312,6 +321,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -349,6 +359,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -378,6 +389,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -411,6 +423,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -441,6 +454,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -470,6 +484,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -503,6 +518,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -532,6 +548,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -561,6 +578,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -590,6 +608,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -619,6 +638,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -649,6 +669,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -678,6 +699,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -707,6 +729,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -736,6 +759,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -765,6 +789,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml index 368ddfe2b..3ac8761ff 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtHeaderParameterNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ValueType @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -71,6 +73,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -156,6 +161,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -184,6 +190,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -212,6 +219,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -240,6 +248,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -268,6 +277,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -296,6 +306,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -324,6 +335,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -353,6 +365,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -381,6 +394,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -409,6 +423,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -437,6 +452,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml index 4480ae655..2dd9e4942 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtPayload.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.Dictionary<System.String,System.Object> @@ -46,6 +47,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -72,6 +74,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -101,6 +104,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -138,6 +142,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -178,6 +183,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -221,6 +227,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -250,6 +257,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -279,6 +287,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -311,6 +320,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -347,6 +357,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.String> @@ -376,6 +387,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IList<System.String> @@ -405,6 +417,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.Int32> @@ -434,6 +447,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -463,6 +477,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -496,6 +511,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -526,6 +542,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -555,6 +572,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -585,6 +603,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -618,6 +637,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.Int32> @@ -647,6 +667,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.Int32> @@ -676,6 +697,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -705,6 +727,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -734,6 +757,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -763,6 +787,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Nullable<System.Int32> @@ -792,6 +817,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -821,6 +847,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -851,6 +878,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -880,6 +908,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -909,6 +938,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml index 74ed947c0..4533e1bed 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtRegisteredClaimNames.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.ValueType @@ -45,6 +46,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -73,6 +75,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -99,6 +102,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -127,6 +131,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -155,6 +160,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -183,6 +189,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -211,6 +218,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -239,6 +247,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -267,6 +276,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -295,6 +305,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -323,6 +334,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -351,6 +363,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +392,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -407,6 +421,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -435,6 +450,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -463,6 +479,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -491,6 +508,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -519,6 +537,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -547,6 +566,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -573,6 +593,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -601,6 +622,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -629,6 +651,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -655,6 +678,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -683,6 +707,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -711,6 +736,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -739,6 +765,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -765,6 +792,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml index e9a3ea8ae..6180ae4e0 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityToken.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -43,6 +44,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -76,6 +78,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -108,6 +111,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -147,6 +151,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -187,6 +192,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -229,6 +235,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -258,6 +265,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.String> @@ -287,6 +295,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> @@ -321,6 +330,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -350,6 +360,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -379,6 +390,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.EncryptingCredentials @@ -408,6 +420,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtHeader @@ -437,6 +450,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -466,6 +480,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -495,6 +510,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -524,6 +540,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -553,6 +570,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtPayload @@ -585,6 +603,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -615,6 +634,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -645,6 +665,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -675,6 +696,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -705,6 +727,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -735,6 +758,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -765,6 +789,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -795,6 +820,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -825,6 +851,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -854,6 +881,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -883,6 +911,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SigningCredentials @@ -912,6 +941,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -942,6 +972,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -971,6 +1002,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -995,6 +1027,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1024,6 +1057,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime @@ -1053,6 +1087,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.DateTime diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml index 35f241e89..628bb372c 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/JwtSecurityTokenHandler.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityTokenHandler @@ -42,6 +43,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 @@ -68,6 +70,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -106,6 +109,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -135,6 +139,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -164,6 +169,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -201,6 +207,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsIdentity @@ -238,6 +245,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -272,6 +280,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -318,6 +327,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -367,6 +377,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -418,6 +429,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -452,6 +464,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -499,6 +512,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -548,6 +562,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -599,6 +614,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -633,6 +649,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -672,6 +689,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ISet<System.String> @@ -700,6 +718,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -728,6 +747,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -756,6 +776,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -784,6 +805,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -812,6 +834,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.ISet<System.String> @@ -842,6 +865,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -872,6 +896,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -902,6 +927,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Boolean @@ -931,6 +957,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -960,6 +987,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Collections.Generic.IDictionary<System.String,System.String> @@ -992,6 +1020,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -1036,6 +1065,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1078,6 +1108,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityToken @@ -1114,6 +1145,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1151,6 +1183,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 Microsoft.IdentityModel.Tokens.SecurityKey @@ -1188,6 +1221,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1218,6 +1252,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Type @@ -1248,6 +1283,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1285,6 +1321,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1324,6 +1361,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1360,6 +1398,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1400,6 +1439,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.IdentityModel.Tokens.Jwt.JwtSecurityToken @@ -1450,6 +1490,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1517,6 +1558,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Threading.Tasks.Task<Microsoft.IdentityModel.Tokens.TokenValidationResult> @@ -1551,6 +1593,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Security.Claims.ClaimsPrincipal @@ -1586,6 +1629,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void @@ -1623,6 +1667,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.String @@ -1667,6 +1712,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Void diff --git a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml index 8e2333ac3..e44acd6b9 100644 --- a/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml +++ b/dotnet/xml/System.IdentityModel.Tokens.Jwt/Serializer.xml @@ -14,6 +14,7 @@ 6.31.0.0 6.32.0.0 6.32.1.0 + 6.32.2.0 System.Delegate From c62575f63c93f01a9c69b08b50c4168d3d62fd5f Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 29 Aug 2023 20:53:10 +0300 Subject: [PATCH 46/63] add includes --- .../exceptions/msal-error-handling.md | 6 ++-- .../advanced/exceptions/msal-logging.md | 2 +- .../error-handling-claims-challenges.md | 17 ++++++++++ .../includes/error-handling-introduction.md | 21 +++++++++++++ .../includes/error-handling-retries.md | 17 ++++++++++ .../includes/error-logging-introduction.md | 31 +++++++++++++++++++ ...net-adoption-steps-confidential-clients.md | 6 ++++ .../msal-net-adoption-steps-public-clients.md | 23 ++++++++++++++ 8 files changed, 119 insertions(+), 4 deletions(-) create mode 100644 msal-dotnet-articles/includes/error-handling-claims-challenges.md create mode 100644 msal-dotnet-articles/includes/error-handling-introduction.md create mode 100644 msal-dotnet-articles/includes/error-handling-retries.md create mode 100644 msal-dotnet-articles/includes/error-logging-introduction.md create mode 100644 msal-dotnet-articles/includes/msal-net-adoption-steps-confidential-clients.md create mode 100644 msal-dotnet-articles/includes/msal-net-adoption-steps-public-clients.md diff --git a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md index 423cb0df5..b6b0c3581 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md @@ -16,7 +16,7 @@ ms.custom: aaddev, devx-track-dotnet --- # Handle errors and exceptions in MSAL.NET -[!INCLUDE [Active directory error handling introduction](./includes/error-handling-and-tips/error-handling-introduction.md)] +[!INCLUDE [Active directory error handling introduction](./includes/error-handling-introduction.md)] ## Error handling in MSAL.NET @@ -130,13 +130,13 @@ catch (MsalUiRequiredException ex) when (ex.ErrorCode == MsalError.InvalidGrantE } } ``` -[!INCLUDE [Active directory error handling claims challenges](./includes/error-handling-and-tips/error-handling-claims-challenges.md)] +[!INCLUDE [Active directory error handling claims challenges](./includes/error-handling-claims-challenges.md)] When calling an API requiring Conditional Access from MSAL.NET, your application will need to handle claim challenge exceptions. This will appear as an [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) where the [Claims](/dotnet/api/microsoft.identity.client.msalserviceexception.claims) property won't be empty. To handle the claim challenge, you'll need to use the `.WithClaim()` method of the [`PublicClientApplicationBuilder`](/dotnet/api/microsoft.identity.client.publicclientapplicationbuilder) class. -[!INCLUDE [Active directory error handling retries](./includes/error-handling-and-tips/error-handling-retries.md)] +[!INCLUDE [Active directory error handling retries](./includes/error-handling-retries.md)] ### HTTP error codes 500-600 diff --git a/msal-dotnet-articles/advanced/exceptions/msal-logging.md b/msal-dotnet-articles/advanced/exceptions/msal-logging.md index 3a91f1241..958ddb95d 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-logging.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-logging.md @@ -17,7 +17,7 @@ ms.custom: aaddev, devx-track-dotnet # Logging in MSAL.NET -[!INCLUDE [MSAL logging introduction](./includes/error-handling-and-tips/error-logging-introduction.md)] +[!INCLUDE [MSAL logging introduction](./includes/error-logging-introduction.md)] ## Configure logging in MSAL.NET diff --git a/msal-dotnet-articles/includes/error-handling-claims-challenges.md b/msal-dotnet-articles/includes/error-handling-claims-challenges.md new file mode 100644 index 000000000..1e7473e00 --- /dev/null +++ b/msal-dotnet-articles/includes/error-handling-claims-challenges.md @@ -0,0 +1,17 @@ +--- +author: cilwerner +ms.author: cwerner +ms.date: 11/25/2020 +ms.service: active-directory +ms.subservice: develop +ms.topic: include +# Purpose: +# Ingested by Microsoft identity platform articles in /articles/active-directory/develop/* that document the error handling Conditional Access and claims challenges for the different platforms. +--- +## Conditional Access and claims challenges + +When getting tokens silently, your application may receive errors when a [Conditional Access claims challenge](../../v2-conditional-access-dev-guide.md) such as MFA policy is required by an API you're trying to access. + +The pattern for handling this error is to interactively acquire a token using MSAL. This prompts the user and gives them the opportunity to satisfy the required Conditional Access policy. + +In certain cases when calling an API requiring Conditional Access, you can receive a claims challenge in the error from the API. For instance if the Conditional Access policy is to have a managed device (Intune) the error will be something like [AADSTS53000: Your device is required to be managed to access this resource](../../reference-error-codes.md) or something similar. In this case, you can pass the claims in the acquire token call so that the user is prompted to satisfy the appropriate policy. diff --git a/msal-dotnet-articles/includes/error-handling-introduction.md b/msal-dotnet-articles/includes/error-handling-introduction.md new file mode 100644 index 000000000..18a8ada58 --- /dev/null +++ b/msal-dotnet-articles/includes/error-handling-introduction.md @@ -0,0 +1,21 @@ +--- +author: cilwerner +ms.author: cwerner +ms.date: 11/25/2020 +ms.service: active-directory +ms.subservice: develop +ms.topic: include +# Purpose: +# Ingested by Microsoft identity platform articles in /articles/active-directory/develop/* that document the error handling intro for the different platforms. +--- +This article gives an overview of the different types of errors and recommendations for handling common sign-in errors. + +## MSAL error handling basics + +Exceptions in Microsoft Authentication Library (MSAL) are intended for app developers to troubleshoot, not for displaying to end users. Exception messages are not localized. + +When processing exceptions and errors, you can use the exception type itself and the error code to distinguish between exceptions. For a list of error codes, see [Azure AD Authentication and authorization error codes](../../reference-error-codes.md). + +During the sign-in experience, you may encounter errors about consents, Conditional Access (MFA, Device Management, Location-based restrictions), token issuance and redemption, and user properties. + +The following section provides more details about error handling for your app. \ No newline at end of file diff --git a/msal-dotnet-articles/includes/error-handling-retries.md b/msal-dotnet-articles/includes/error-handling-retries.md new file mode 100644 index 000000000..a72a555ab --- /dev/null +++ b/msal-dotnet-articles/includes/error-handling-retries.md @@ -0,0 +1,17 @@ +--- +author: cilwerner +ms.author: cwerner +ms.date: 11/25/2020 +ms.service: active-directory +ms.subservice: develop +ms.topic: include +# Purpose: +# Ingested by Microsoft identity platform articles in /articles/active-directory/develop/* that document the error handling retries for the different platforms. +--- +## Retrying after errors and exceptions + +You're expected to implement your own retry policies when calling MSAL. MSAL makes HTTP calls to the Azure AD service, and occasionally failures can occur. For example the network can go down or the server is overloaded. + +### HTTP 429 + +When the Service Token Server (STS) is overloaded with too many requests, it returns HTTP error 429 with a hint about how long until you can try again in the `Retry-After` response field. \ No newline at end of file diff --git a/msal-dotnet-articles/includes/error-logging-introduction.md b/msal-dotnet-articles/includes/error-logging-introduction.md new file mode 100644 index 000000000..f747d539b --- /dev/null +++ b/msal-dotnet-articles/includes/error-logging-introduction.md @@ -0,0 +1,31 @@ +--- +author: cilwerner +ms.author: cwerner +ms.date: 12/16/2020 +ms.service: active-directory +ms.subservice: develop +ms.topic: include +# Purpose: +# Ingested by Microsoft identity platform articles in /articles/active-directory/develop/* that document error logging for the different platforms. +--- +The Microsoft Authentication Library (MSAL) apps generate log messages that can help diagnose issues. An app can configure logging with a few lines of code, and have custom control over the level of detail and whether or not personal and organizational data is logged. We recommend you create an MSAL logging implementation and provide a way for users to submit logs when they have authentication issues. + +## Logging levels + +MSAL provides several levels of logging detail: + +- LogAlways: No level filtering is done on this log level. Log messages of all levels will be logged. +- Critical: Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention. +- Error: Indicates something has gone wrong and an error was generated. Used for debugging and identifying problems. +- Warning: There hasn't necessarily been an error or failure, but are intended for diagnostics and pinpointing problems. +- Informational: MSAL will log events intended for informational purposes not necessarily intended for debugging. +- Verbose (Default): MSAL logs the full details of library behavior. + +> [!NOTE] +> Not all log levels are available for all MSAL SDK's + +## Personal and organizational data + +By default, the MSAL logger doesn't capture any highly sensitive personal or organizational data. The library provides the option to enable logging personal and organizational data if you decide to do so. + +The following sections provide more details about MSAL error logging for your application. diff --git a/msal-dotnet-articles/includes/msal-net-adoption-steps-confidential-clients.md b/msal-dotnet-articles/includes/msal-net-adoption-steps-confidential-clients.md new file mode 100644 index 000000000..14e33fe8c --- /dev/null +++ b/msal-dotnet-articles/includes/msal-net-adoption-steps-confidential-clients.md @@ -0,0 +1,6 @@ +The following steps for updating code apply across all the confidential client scenarios: + +1. Add the MSAL.NET namespace in your source code: `using Microsoft.Identity.Client;`. +2. Instead of instantiating `AuthenticationContext`, use `ConfidentialClientApplicationBuilder.Create` to instantiate `IConfidentialClientApplication`. +3. Instead of the `resourceId` string, MSAL.NET uses scopes. Because applications that use ADAL.NET are preauthorized, you can always use the following scopes: `new string[] { $"{resourceId}/.default" }`. +4. Replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenXXX`, where *XXX* depends on your scenario. diff --git a/msal-dotnet-articles/includes/msal-net-adoption-steps-public-clients.md b/msal-dotnet-articles/includes/msal-net-adoption-steps-public-clients.md new file mode 100644 index 000000000..225ea9379 --- /dev/null +++ b/msal-dotnet-articles/includes/msal-net-adoption-steps-public-clients.md @@ -0,0 +1,23 @@ +--- +title: Common steps for public client migration to MSAL +description: Include file that explains the common steps you need to take for all public client apps when it comes to migration from ADAL to MSAL. +services: active-directory +author: cilwerner +manager: CelesteDG + +ms.service: active-directory +ms.subservice: develop +ms.workload: identity +ms.topic: include +ms.date: 09/08/2021 +ms.author: cwerner +ms.reviewer: jmprieur, sahmalik +ms.custom: aaddev +--- + +The following steps for updating code apply across all the confidential client scenarios: + +1. Add the MSAL.NET namespace in your source code: `using Microsoft.Identity.Client;`. +2. Instead of instantiating `AuthenticationContext`, use `PublicClientApplicationBuilder.Create` to instantiate `IPublicClientApplication`. +3. Instead of the `resourceId` string, MSAL.NET uses scopes. Because applications that use ADAL.NET are preauthorized, you can always use the following scopes: `new string[] { $"{resourceId}/.default" }`. +4. Replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenXXX`, where *XXX* depends on your scenario. \ No newline at end of file From 0db0a0a90a82c37262db2dc39c2d353945f92a4e Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 29 Aug 2023 21:03:23 +0300 Subject: [PATCH 47/63] some linking updates --- .../advanced/exceptions/msal-error-handling.md | 6 +++--- msal-dotnet-articles/advanced/exceptions/msal-logging.md | 2 +- msal-dotnet-articles/how-to/migrate-confidential-client.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md index b6b0c3581..a8770e56e 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md @@ -33,7 +33,7 @@ When processing .NET exceptions, you can use the exception type itself and the ` You can also have a look at the fields of [MsalClientException](/dotnet/api/microsoft.identity.client.msalexception), [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception), and [MsalUIRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception). -If [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) is thrown, try [Authentication and authorization error codes](reference-error-codes.md) to see if the code is listed there. +If [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) is thrown, try [Authentication and authorization error codes](/azure/active-directory/develop/reference-error-codes) to see if the code is listed there. If [MsalUIRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) is thrown, it's an indication that an interactive flow needs to happen for the user to resolve the issue. In public client apps such as desktop and mobile app, this is resolved by calling `AcquireTokenInteractive`, which displays a browser. In confidential client apps, web apps should redirect the user to the authorization page, and web APIs should return an HTTP status code and header indicative of the authentication failure (401 Unauthorized and a WWW-Authenticate header). @@ -44,7 +44,7 @@ Here are the common exceptions that might be thrown and some possible mitigation | Exception | Error code | Mitigation| | --- | --- | --- | | [MsalUiRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) | AADSTS65001: The user or administrator hasn't consented to use the application with ID '{appId}' named '{appName}'. Send an interactive authorization request for this user and resource.| Get user consent first. If you aren't using .NET Core (which doesn't have any Web UI), call (once only) `AcquireTokeninteractive`. If you're using .NET core or don't want to do an `AcquireTokenInteractive`, the user can navigate to a URL to give consent: `https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id={clientId}&response_type=code&scope=user.read`. to call `AcquireTokenInteractive`: `app.AcquireTokenInteractive(scopes).WithAccount(account).WithClaims(ex.Claims).ExecuteAsync();`| -| [MsalUiRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) | AADSTS50079: The user is required to use [multi-factor authentication (MFA)](../authentication/concept-mfa-howitworks.md).| There's no mitigation. If MFA is configured for your tenant and Azure Active Directory (Azure AD) decides to enforce it, fall back to an interactive flow such as `AcquireTokenInteractive`.| +| [MsalUiRequiredException](/dotnet/api/microsoft.identity.client.msaluirequiredexception) | AADSTS50079: The user is required to use [multi-factor authentication (MFA)](/azure/active-directory/authentication/concept-mfa-howitworks).| There's no mitigation. If MFA is configured for your tenant and Azure Active Directory (Azure AD) decides to enforce it, fall back to an interactive flow such as `AcquireTokenInteractive`.| | [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) |AADSTS90010: The grant type isn't supported over the */common* or */consumers* endpoints. Use the */organizations* or tenant-specific endpoint. You used */common*.| As explained in the message from Azure AD, the authority needs to have a tenant or otherwise */organizations*.| | [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) | AADSTS70002: The request body must contain the following parameter: `client_secret or client_assertion`.| This exception can be thrown if your application wasn't registered as a public client application in Azure AD. In the Azure portal, edit the manifest for your application and set `allowPublicClient` to `true`. | | [MsalClientException](/dotnet/api/microsoft.identity.client.msalclientexception)| `unknown_user Message`: Couldn't identify logged in user| The library was unable to query the current Windows logged-in user or this user isn't AD or Azure AD joined (work-place joined users aren't supported). Mitigation 1: on UWP, check that the application has the following capabilities: Enterprise Authentication, Private Networks (Client and Server), User Account Information. Mitigation 2: Implement your own logic to fetch the username (for example, john@contoso.com) and use the `AcquireTokenByIntegratedWindowsAuth` form that takes in the username.| @@ -182,4 +182,4 @@ do ## Next steps -Consider enabling [Logging in MSAL.NET](msal-logging-dotnet.md) to help you diagnose and debug issues. +Consider enabling [Logging in MSAL.NET](msal-logging.md) to help you diagnose and debug issues. diff --git a/msal-dotnet-articles/advanced/exceptions/msal-logging.md b/msal-dotnet-articles/advanced/exceptions/msal-logging.md index 958ddb95d..99b0ba5a6 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-logging.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-logging.md @@ -126,4 +126,4 @@ Using `MyIdentityLogger`: ## Next steps -For more code samples, refer to [Microsoft identity platform code samples](sample-v2-code.md). +For more code samples, refer to [Microsoft identity platform code samples](/azure/active-directory/develop/sample-v2-code). diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md index 6bb3314f5..85217d40a 100644 --- a/msal-dotnet-articles/how-to/migrate-confidential-client.md +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -17,7 +17,7 @@ ms.custom: devx-track-csharp, aaddev, has-adal-ref, kr2b-contr-experiment, devx- # Migrate confidential client applications from ADAL.NET to MSAL.NET -In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](authentication-flows-app-scenarios.md). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](microsoft-identity-web.md). +In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](microsoft-identity-web/index.md). For app registrations: From e0856a09e7a936ce4f86da3a29e0bd5d4da882e3 Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Wed, 30 Aug 2023 13:56:16 -0700 Subject: [PATCH 48/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index cf5fce856..c48dd054f 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -35,6 +35,10 @@ WAM support is split across two packages: After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. +>[!NOTE] +>Most apps need to reference the Microsoft.Identity.Client.Broker package to use this integration. .NET MAUI apps and UAP don't have to do this, because the functionality is inside MSAL when the target is net6-windows and later. + + ```csharp var scopes = new[] { "User.Read" }; From a0cd710520f689a17e1ee33a4a5826cbbe142f0a Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Wed, 30 Aug 2023 14:01:09 -0700 Subject: [PATCH 49/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index c48dd054f..b0ef5336b 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -36,7 +36,7 @@ WAM support is split across two packages: After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. >[!NOTE] ->Most apps need to reference the Microsoft.Identity.Client.Broker package to use this integration. .NET MAUI apps and UAP don't have to do this, because the functionality is inside MSAL when the target is net6-windows and later. +>Most apps need to reference the Microsoft.Identity.Client.Broker package to use this integration. .NET MAUI apps and UAP don't have to do this, because the functionality is inside MSAL. ```csharp From 065d5c8aeedf2efb98792bed84c511228df2f3dd Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 31 Aug 2023 08:05:49 -0700 Subject: [PATCH 50/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index b0ef5336b..d59436731 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -36,8 +36,7 @@ WAM support is split across two packages: After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. >[!NOTE] ->Most apps need to reference the Microsoft.Identity.Client.Broker package to use this integration. .NET MAUI apps and UAP don't have to do this, because the functionality is inside MSAL. - +>Most apps need to reference the [`Microsoft.Identity.Client.Broker`]([Microsoft.Identity.Client.Broker](https://www.nuget.org/packages/Microsoft.Identity.Client.Broker/)) package to use this integration. .NET MAUI and UWP applications don't need to add the dependency because the functionality is embedded into MSAL. ```csharp var scopes = new[] { "User.Read" }; From 0135c76b29f39606ac2ea43396f47555224a0c76 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Thu, 31 Aug 2023 08:41:02 -0700 Subject: [PATCH 51/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index d59436731..37e315f8d 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -36,7 +36,7 @@ WAM support is split across two packages: After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. >[!NOTE] ->Most apps need to reference the [`Microsoft.Identity.Client.Broker`]([Microsoft.Identity.Client.Broker](https://www.nuget.org/packages/Microsoft.Identity.Client.Broker/)) package to use this integration. .NET MAUI and UWP applications don't need to add the dependency because the functionality is embedded into MSAL. +>Most apps need to reference the [`Microsoft.Identity.Client.Broker`](https://www.nuget.org/packages/Microsoft.Identity.Client.Broker/) package to use this integration. .NET MAUI and UWP applications don't need to add the dependency because the functionality is embedded into MSAL. ```csharp var scopes = new[] { "User.Read" }; From 9bcd744c394d594b5e0b84f5bf68998ef4828c52 Mon Sep 17 00:00:00 2001 From: Bogdan Gavril Date: Fri, 1 Sep 2023 13:09:13 +0100 Subject: [PATCH 52/63] Update wam.md --- msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md index cf5fce856..24e70e453 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/wam.md @@ -32,6 +32,7 @@ WAM support is split across two packages: >[!NOTE] >For migration purposes, and if you have a .NET 6, .NET Core, or a .NET Standard application that needs to use _both_ WAM and the [embedded browser](/azure/active-directory/develop/msal-net-web-browsers#embedded-vs-system-web-ui), you will also need to use the [Microsoft.Identity.Client.Desktop](https://www.nuget.org/packages/Microsoft.Identity.Client.Desktop/) package. Once added, developers can use [`WithWindowsDesktopFeatures`](xref:Microsoft.Identity.Client.Desktop.DesktopExtensions.WithWindowsDesktopFeatures*) when setting up their public client application. +>If your application targets UWP or netX-windows, WAM is already in the MSAL.NET package After referencing the relevant packages, call [`WithBroker(BrokerOptions)`](xref:Microsoft.Identity.Client.Desktop.WamExtension.WithBroker*) with broker configuration options and [a window handle](#parent-window-handles) that the broker will be bound to. @@ -85,9 +86,6 @@ If the configuration is set on a per-tenant basis by using [`WithTenantId`](xref Once the account is added or selected, the user will be prompted for additional consent if they have never used the application before or the application requires additional permissions. ->[!NOTE] ->No changes are required for UWP applications. Because the platform does not support the updated broker, existing applications will continue to use the legacy WAM implementation. - ## Parent window handles To use the broker, it is now required to provide the window handle to which the WAM modal dialog be parented using [`WithParentActivityOrWindow`](xref:Microsoft.Identity.Client.PublicClientApplicationBuilder.WithParentActivityOrWindow*) APIs. The window handle must be provided by the developer because it's not feasible for MSAL itself to infer the parent window and in the past this has led to bad user experiences where the authentication window was hidden behind the application window. From 977cb9e32e1ecf37e84ed6ac46e2674adae61b97 Mon Sep 17 00:00:00 2001 From: VSC-Service-Account Date: Mon, 4 Sep 2023 16:07:44 +0000 Subject: [PATCH 53/63] CI Update Build.Reason:Schedule Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=383833&view=results source_repo.branch:master source_repo.csvPath:bundlepackages/msal-dotnet source_repo.url:https://apidrop.visualstudio.com/binaries/_git/mrefconfig --- .../CredentialDescription.xml | 22 +++++++++---------- .../CredentialSourceLoaderParameters.xml | 2 +- .../ClientAssertionCertificate.xml | 2 +- .../ConfidentialClientApplication.xml | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml index ddb0a419a..d483d7cb4 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialDescription.xml @@ -165,7 +165,7 @@ To be added. To be added. - + - + @@ -203,8 +203,8 @@ To be added. To be added. - + CurrentUser/My) and specified by its distinguised name, used as a client credential in a confidential client application: @@ -214,7 +214,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="distinguishedname_csharp"::: ]]> - + @@ -242,7 +242,7 @@ To be added. To be added. - + - + @@ -282,10 +282,10 @@ To be added. Use this property in conjunction with or . - + @@ -313,8 +313,8 @@ To be added. Use this property in conjunction with . - + CurrentUser/My) and specified by its thumbprint, used as a client credential in a confidential client application: @@ -324,7 +324,7 @@ :::code language="csharp" source="~/../abstractions-samples/test/Microsoft.Identity.Abstractions.Tests/CredentialDescriptionTest.cs" id="thumbprint_csharp"::: ]]> - + @@ -533,7 +533,7 @@ To be added. To be added. - + - + diff --git a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml index c57d11902..0821d268c 100644 --- a/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml +++ b/dotnet/xml/Microsoft.Identity.Abstractions/CredentialSourceLoaderParameters.xml @@ -22,8 +22,8 @@ unless you are writing a custom credential loader. To be added. - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml index 28e9c81ff..d65851628 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ClientAssertionCertificate.xml @@ -36,8 +36,8 @@ Azure AD application) To understand the difference between public client applications and confidential client applications, see https://aka.ms/msal-net-client-applications - + diff --git a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml index 003f6f605..717521f9c 100644 --- a/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml +++ b/dotnet/xml/Microsoft.Identity.Client/ConfidentialClientApplication.xml @@ -550,8 +550,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + @@ -606,8 +606,8 @@ Authentication result containing a token for the requested scopes and account To be added. - + From 6f8ea91582621123d68e8c8fefcbd6e06517e834 Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:19:37 +0300 Subject: [PATCH 54/63] update includes --- .../advanced/exceptions/msal-error-handling.md | 7 ++++--- msal-dotnet-articles/advanced/exceptions/msal-logging.md | 2 +- .../how-to/migrate-confidential-client.md | 6 +++--- msal-dotnet-articles/how-to/migrate-public-client.md | 8 ++++---- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md index a8770e56e..c5ce5d7d5 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-error-handling.md @@ -16,11 +16,12 @@ ms.custom: aaddev, devx-track-dotnet --- # Handle errors and exceptions in MSAL.NET -[!INCLUDE [Active directory error handling introduction](./includes/error-handling-introduction.md)] +[!INCLUDE [Active directory error handling introduction](../../includes/error-handling-introduction.md)] ## Error handling in MSAL.NET ### Exception types + [MsalClientException](/dotnet/api/microsoft.identity.client.msalexception) is thrown when the library itself detects an error state, such as a bad configuration. [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) is thrown when the Identity Provider (Azure AD) returns an error. It's a translation of the server error. @@ -130,13 +131,13 @@ catch (MsalUiRequiredException ex) when (ex.ErrorCode == MsalError.InvalidGrantE } } ``` -[!INCLUDE [Active directory error handling claims challenges](./includes/error-handling-claims-challenges.md)] +[!INCLUDE [Active directory error handling claims challenges](../../includes/error-handling-claims-challenges.md)] When calling an API requiring Conditional Access from MSAL.NET, your application will need to handle claim challenge exceptions. This will appear as an [MsalServiceException](/dotnet/api/microsoft.identity.client.msalserviceexception) where the [Claims](/dotnet/api/microsoft.identity.client.msalserviceexception.claims) property won't be empty. To handle the claim challenge, you'll need to use the `.WithClaim()` method of the [`PublicClientApplicationBuilder`](/dotnet/api/microsoft.identity.client.publicclientapplicationbuilder) class. -[!INCLUDE [Active directory error handling retries](./includes/error-handling-retries.md)] +[!INCLUDE [Active directory error handling retries](../../includes/error-handling-retries.md)] ### HTTP error codes 500-600 diff --git a/msal-dotnet-articles/advanced/exceptions/msal-logging.md b/msal-dotnet-articles/advanced/exceptions/msal-logging.md index 99b0ba5a6..596153cc9 100644 --- a/msal-dotnet-articles/advanced/exceptions/msal-logging.md +++ b/msal-dotnet-articles/advanced/exceptions/msal-logging.md @@ -17,7 +17,7 @@ ms.custom: aaddev, devx-track-dotnet # Logging in MSAL.NET -[!INCLUDE [MSAL logging introduction](./includes/error-logging-introduction.md)] +[!INCLUDE [MSAL logging introduction](../../includes/error-logging-introduction.md)] ## Configure logging in MSAL.NET diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md index 85217d40a..97b83fa6b 100644 --- a/msal-dotnet-articles/how-to/migrate-confidential-client.md +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -62,7 +62,7 @@ The ADAL code for your app uses daemon scenarios if it contains a call to `Authe #### Update the code of daemon scenarios -[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenClient`. @@ -189,7 +189,7 @@ The ADAL code for your app uses OBO if it contains a call to `AuthenticationCont #### Update the code by using OBO -[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenOnBehalfOf`. @@ -326,7 +326,7 @@ The ADAL code for your app uses auth code flow if it contains a call to `Authent #### Update the code by using the authorization code flow -[!INCLUDE [Common steps](includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenByAuthorizationCode`. diff --git a/msal-dotnet-articles/how-to/migrate-public-client.md b/msal-dotnet-articles/how-to/migrate-public-client.md index 5dfa19952..e324c253b 100644 --- a/msal-dotnet-articles/how-to/migrate-public-client.md +++ b/msal-dotnet-articles/how-to/migrate-public-client.md @@ -56,7 +56,7 @@ The ADAL code for your app in a public client application that uses interactive #### Update the code for interactive scenarios - [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenInteractive`. @@ -132,7 +132,7 @@ The ADAL code for your app uses integrated Windows authentication scenarios if i #### Update the code for integrated Windows authentication scenarios - [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenByIntegratedWindowsAuth`. @@ -250,7 +250,7 @@ In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` w Here's a comparison of ADAL.NET and MSAL.NET code for username password scenarios: - [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] :::row::: :::column span=""::: @@ -322,7 +322,7 @@ The ADAL code for your app uses device code flow scenarios if it contains a call #### Update the code for device code flow scenarios - [!INCLUDE [Common steps](includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenWithDeviceCode`. From 60bf87d41d6ff32f81ab916f997cf620be1dde52 Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:27:44 +0300 Subject: [PATCH 55/63] Update migrate-confidential-client.md --- msal-dotnet-articles/how-to/migrate-confidential-client.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md index 97b83fa6b..040385b06 100644 --- a/msal-dotnet-articles/how-to/migrate-confidential-client.md +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -17,7 +17,9 @@ ms.custom: devx-track-csharp, aaddev, has-adal-ref, kr2b-contr-experiment, devx- # Migrate confidential client applications from ADAL.NET to MSAL.NET -In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](microsoft-identity-web/index.md). +In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](../../msal-dotnet-articles/microsoft-identity-web/index.md + +microsoft-identity-web/index.md). For app registrations: @@ -306,7 +308,7 @@ For token caching in OBOs, use a distributed token cache. For details, see [Toke app.UseInMemoryTokenCaches(); // or a distributed token cache. ``` -[Learn more about web APIs calling downstream web APIs](scenario-web-api-call-api-overview.md) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new apps. +[Learn more about web APIs calling downstream web APIs](/azure/active-directory/develop/scenario-web-api-call-api-overview) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new apps. ## [Web app calling web APIs](#tab/authcode) From 6445d3750d819002bd7ce74099f56f97034f7c8e Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:49:21 +0300 Subject: [PATCH 56/63] fix broken links --- .../how-to/migrate-confidential-client.md | 10 ++++------ msal-dotnet-articles/how-to/migrate-public-client.md | 8 ++++---- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md index 040385b06..a59909c49 100644 --- a/msal-dotnet-articles/how-to/migrate-confidential-client.md +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -17,9 +17,7 @@ ms.custom: devx-track-csharp, aaddev, has-adal-ref, kr2b-contr-experiment, devx- # Migrate confidential client applications from ADAL.NET to MSAL.NET -In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](../../msal-dotnet-articles/microsoft-identity-web/index.md - -microsoft-identity-web/index.md). +In this how-to guide you'll migrate a confidential client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Confidential client applications include web apps, web APIs, and daemon applications that call another service on their own behalf. For more information about confidential apps, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). If your app is based on ASP.NET Core, see [Microsoft.Identity.Web](../microsoft-identity-web/index.md). For app registrations: @@ -64,7 +62,7 @@ The ADAL code for your app uses daemon scenarios if it contains a call to `Authe #### Update the code of daemon scenarios -[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenClient`. @@ -191,7 +189,7 @@ The ADAL code for your app uses OBO if it contains a call to `AuthenticationCont #### Update the code by using OBO -[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenOnBehalfOf`. @@ -328,7 +326,7 @@ The ADAL code for your app uses auth code flow if it contains a call to `Authent #### Update the code by using the authorization code flow -[!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-confidential-clients.md)] +[!INCLUDE [Common steps](../includes/msal-net-adoption-steps-confidential-clients.md)] In this case, replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IConfidentialClientApplication.AcquireTokenByAuthorizationCode`. diff --git a/msal-dotnet-articles/how-to/migrate-public-client.md b/msal-dotnet-articles/how-to/migrate-public-client.md index e324c253b..76ae7808d 100644 --- a/msal-dotnet-articles/how-to/migrate-public-client.md +++ b/msal-dotnet-articles/how-to/migrate-public-client.md @@ -56,7 +56,7 @@ The ADAL code for your app in a public client application that uses interactive #### Update the code for interactive scenarios - [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenInteractive`. @@ -132,7 +132,7 @@ The ADAL code for your app uses integrated Windows authentication scenarios if i #### Update the code for integrated Windows authentication scenarios - [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenByIntegratedWindowsAuth`. @@ -250,7 +250,7 @@ In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` w Here's a comparison of ADAL.NET and MSAL.NET code for username password scenarios: - [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../includes/msal-net-adoption-steps-public-clients.md)] :::row::: :::column span=""::: @@ -322,7 +322,7 @@ The ADAL code for your app uses device code flow scenarios if it contains a call #### Update the code for device code flow scenarios - [!INCLUDE [Common steps](../../includes/msal-net-adoption-steps-public-clients.md)] + [!INCLUDE [Common steps](../includes/msal-net-adoption-steps-public-clients.md)] In this case, we replace the call to `AuthenticationContext.AcquireTokenAsync` with a call to `IPublicClientApplication.AcquireTokenWithDeviceCode`. From 48ff484c70bb0dbed1fa34f17e96dea4ecf6fb8a Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 5 Sep 2023 15:03:17 +0300 Subject: [PATCH 57/63] more broken links fixed --- .../how-to/migrate-confidential-client.md | 26 +++++++++---------- .../how-to/migrate-public-client.md | 22 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/msal-dotnet-articles/how-to/migrate-confidential-client.md b/msal-dotnet-articles/how-to/migrate-confidential-client.md index a59909c49..421d8f7df 100644 --- a/msal-dotnet-articles/how-to/migrate-confidential-client.md +++ b/msal-dotnet-articles/how-to/migrate-confidential-client.md @@ -49,7 +49,7 @@ You might have provided a wrapper around ADAL.NET to handle certificates and cac ### Migrate daemon apps -Daemon scenarios use the OAuth2.0 [client credential flow](v2-oauth2-client-creds-grant-flow.md). They're also called service-to-service calls. Your app acquires a token on its own behalf, not on behalf of a user. +Daemon scenarios use the OAuth2.0 [client credential flow](/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow). They're also called service-to-service calls. Your app acquires a token on its own behalf, not on behalf of a user. #### Find out if your code uses daemon scenarios @@ -169,15 +169,15 @@ public partial class AuthWrapper If you don't setup token caching, the token issuer will throttle you, resulting in errors. It also takes a lot less to get a token from the cache (10-20ms) than it is from ESTS (500-30000ms). -If you want to implement a distributed token cache, see [Token cache for a web app or web API (confidential client application)](msal-net-token-cache-serialization.md?tabs=aspnet) and the sample [active-directory-dotnet-v1-to-v2/ConfidentialClientTokenCache](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). +If you want to implement a distributed token cache, see [Token cache for a web app or web API (confidential client application)](token-cache-serialization.md?tabs=aspnet) and the sample [active-directory-dotnet-v1-to-v2/ConfidentialClientTokenCache](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). -[Learn more about the daemon scenario](scenario-daemon-overview.md) and how it's implemented with MSAL.NET or Microsoft.Identity.Web in new applications. +[Learn more about the daemon scenario](/azure/active-directory/develop/scenario-daemon-overview) and how it's implemented with MSAL.NET or Microsoft.Identity.Web in new applications. ## [Web API calling downstream web APIs](#tab/obo) ### Migrate a web API that calls downstream web APIs -Web APIs that call downstream web APIs use the OAuth2.0 [on-behalf-of (OBO)](v2-oauth2-on-behalf-of-flow.md) flow. The web API uses the access token retrieved from the HTTP **Authorize** header and it validates this token. This token is then exchanged against a token to call the downstream web API. This token is used as a `UserAssertion` instance in both ADAL.NET and MSAL.NET. +Web APIs that call downstream web APIs use the OAuth2.0 [on-behalf-of (OBO)](/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow) flow. The web API uses the access token retrieved from the HTTP **Authorize** header and it validates this token. This token is then exchanged against a token to call the downstream web API. This token is used as a `UserAssertion` instance in both ADAL.NET and MSAL.NET. #### Find out if your code uses OBO @@ -300,7 +300,7 @@ public partial class AuthWrapper #### Benefit from token caching -For token caching in OBOs, use a distributed token cache. For details, see [Token cache for a web app or web API (confidential client app)](msal-net-token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). +For token caching in OBOs, use a distributed token cache. For details, see [Token cache for a web app or web API (confidential client app)](token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). ```CSharp app.UseInMemoryTokenCaches(); // or a distributed token cache. @@ -314,7 +314,7 @@ app.UseInMemoryTokenCaches(); // or a distributed token cache. If your app uses ASP.NET Core, we strongly recommend that you update to Microsoft.Identity.Web because it processes everything for you. For a quick presentation, see the [Microsoft.Identity.Web announcement of general availability](https://github.com/AzureAD/microsoft-identity-web/wiki/1.0.0). For details about how to use it in a web app, see [Why use Microsoft.Identity.Web in web apps?](https://aka.ms/ms-id-web/webapp). -Web apps that sign in users and call web APIs on behalf of users employ the OAuth2.0 [authorization code flow](v2-oauth2-auth-code-flow.md). Typically: +Web apps that sign in users and call web APIs on behalf of users employ the OAuth2.0 [authorization code flow](/azure/active-directory/develop/v2-oauth2-auth-code-flow). Typically: 1. The app signs in a user by executing a first leg of the authorization code flow by going to the Microsoft identity platform authorize endpoint. The user signs in and performs multi-factor authentications if needed. As an outcome of this operation, the app receives the authorization code. The authentication library isn't used at this stage. 1. The app executes the second leg of the authorization code flow. It uses the authorization code to get an access token, an ID token, and a refresh token. Your application needs to provide the `redirectUri` value, which is the URI where the Microsoft identity platform endpoint will provide the security tokens. After the app receives that URI, it typically calls `AcquireTokenByAuthorizationCode` for ADAL or MSAL to redeem the code and to get a token that will be stored in the token cache. @@ -475,7 +475,7 @@ public partial class AuthWrapper #### Benefit from token caching -Because your web app uses `AcquireTokenByAuthorizationCode`, it needs to use a distributed token cache for token caching. For details, see [Token cache for a web app or web API](msal-net-token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). +Because your web app uses `AcquireTokenByAuthorizationCode`, it needs to use a distributed token cache for token caching. For details, see [Token cache for a web app or web API](token-cache-serialization.md?tabs=aspnet) and read through [sample code](https://github.com/Azure-Samples/active-directory-dotnet-v1-to-v2/tree/master/ConfidentialClientTokenCache). ```CSharp @@ -487,9 +487,9 @@ app.UseInMemoryTokenCaches(); // or a distributed token cache. When your controller attempts to acquire a token silently for different scopes/resources, MSAL.NET might throw an `MsalUiRequiredException` as expected if the user needs to re-sign-in, or if the access to the resource requires more claims (because of a Conditional Access -policy). For details on mitigation see how to [Handle errors and exceptions in MSAL.NET](msal-error-handling-dotnet.md). +policy). For details on mitigation see how to [Handle errors and exceptions in MSAL.NET](../advanced/exceptions/msal-error-handling.md). -[Learn more about web apps calling web APIs](scenario-web-app-call-api-overview.md) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new applications. +[Learn more about web apps calling web APIs](/azure/active-directory/develop/scenario-web-app-call-api-overview) and how they're implemented with MSAL.NET or Microsoft.Identity.Web in new applications. --- @@ -500,7 +500,7 @@ Key benefits of MSAL.NET for your app include: - **Resilience**. MSAL.NET helps make your app resilient through: - Azure AD Cached Credential Service (CCS) benefits. CCS operates as an Azure AD backup. - - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](app-resilience-continuous-access-evaluation.md). + - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](/azure/active-directory/develop/app-resilience-continuous-access-evaluation). - **Security**. You can acquire Proof of Possession (PoP) tokens if the web API that you want to call requires it. For details, see [Proof Of Possession tokens in MSAL.NET](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Proof-Of-Possession-(PoP)-tokens) @@ -534,7 +534,7 @@ If you get an exception with either of the following messages: Troubleshoot the exception using these steps: 1. Confirm that you're using the latest version of [MSAL.NET](https://www.nuget.org/packages/Microsoft.Identity.Client/). -1. Confirm that the authority host that you set when building the confidential client app and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](msal-national-cloud.md) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? +1. Confirm that the authority host that you set when building the confidential client app and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](/azure/active-directory/develop/msal-national-cloud) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? ### MsalClientException @@ -547,5 +547,5 @@ To remediate this issue, replace `.WithAuthority` on the AcquireTokenXXX express ## Next steps Learn more about: -- [differences between ADAL.NET and MSAL.NET apps](msal-net-differences-adal-net.md). -- [token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md) +- [Differences between ADAL.NET and MSAL.NET apps](differences-adal-MSAL-net.md). +- [Token cache serialization in MSAL.NET](token-cache-serialization.md) diff --git a/msal-dotnet-articles/how-to/migrate-public-client.md b/msal-dotnet-articles/how-to/migrate-public-client.md index 76ae7808d..bb89abfe5 100644 --- a/msal-dotnet-articles/how-to/migrate-public-client.md +++ b/msal-dotnet-articles/how-to/migrate-public-client.md @@ -18,7 +18,7 @@ ms.custom: devx-track-csharp, aaddev, has-adal-ref, devx-track-dotnet # Migrate public client applications from ADAL.NET to MSAL.NET -This article describes how to migrate a public client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Public client applications are desktop apps, including Win32, WPF, and UWP apps, and mobile apps, that call another service on the user's behalf. For more information about public client applications, see [Authentication flows and application scenarios](authentication-flows-app-scenarios.md). +This article describes how to migrate a public client application from Azure Active Directory Authentication Library for .NET (ADAL.NET) to Microsoft Authentication Library for .NET (MSAL.NET). Public client applications are desktop apps, including Win32, WPF, and UWP apps, and mobile apps, that call another service on the user's behalf. For more information about public client applications, see [Authentication flows and application scenarios](/azure/active-directory/develop/authentication-flows-app-scenarios). ## Migration steps @@ -35,11 +35,11 @@ This article describes how to migrate a public client application from Azure Act The public client scenarios are: - - [Web Authentication Manager](scenario-desktop-acquire-token-wam.md) the preferred broker-based authentication on Windows. - - [Interactive authentication](scenario-desktop-acquire-token-interactive.md) where the user is shown a web-based interface to complete the sign-in process. - - [Integrated Windows authentication](scenario-desktop-acquire-token-integrated-windows-authentication.md) where a user signs using the same identity they used to sign into a Windows domain (for domain-joined or Azure AD-joined machines). - - [Username/password](scenario-desktop-acquire-token-username-password.md) where the sign-in occurs by providing a username/password credential. - - [Device code flow](scenario-desktop-acquire-token-device-code-flow.md) where a device of limited UX shows you a device code to complete the authentication flow on an alternate device. + - [Web Authentication Manager](/azure/active-directory/develop/scenario-desktop-acquire-token-wam) the preferred broker-based authentication on Windows. + - [Interactive authentication](/azure/active-directory/develop/scenario-desktop-acquire-token-interactive) where the user is shown a web-based interface to complete the sign-in process. + - [Integrated Windows authentication](/azure/active-directory/develop/scenario-desktop-acquire-token-integrated-windows-authentication) where a user signs using the same identity they used to sign into a Windows domain (for domain-joined or Azure AD-joined machines). + - [Username/password](/azure/active-directory/develop/scenario-desktop-acquire-token-username-password) where the sign-in occurs by providing a username/password credential. + - [Device code flow](/azure/active-directory/develop/scenario-desktop-acquire-token-device-code-flow) where a device of limited UX shows you a device code to complete the authentication flow on an alternate device. ## [Interactive](#tab/interactive) @@ -116,7 +116,7 @@ catch (MsalUiRequiredException) // no change in the pattern :::column-end::: :::row-end::: -The MSAL code shown above uses WAM (Web authentication manager) which is the recommended approach. If you wish to use interactive authentication without WAM, see [Interactive Authentication](scenario-desktop-acquire-token-interactive.md). +The MSAL code shown above uses WAM (Web authentication manager) which is the recommended approach. If you wish to use interactive authentication without WAM, see [Interactive Authentication](/azure/active-directory/develop/scenario-desktop-acquire-token-interactive). ## [Integrated Windows authentication](#tab/iwa) @@ -470,7 +470,7 @@ Key benefits of MSAL.NET for your app include: - **Resilience**. MSAL.NET helps make your app resilient through the following: - Azure AD Cached Credential Service (CCS) benefits. CCS operates as an Azure AD backup. - - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](app-resilience-continuous-access-evaluation.md). + - Proactive renewal of tokens if the API that you call enables long-lived tokens through [continuous access evaluation](/azure/active-directory/develop/app-resilience-continuous-access-evaluation). ### Troubleshooting @@ -488,9 +488,9 @@ If you get an exception with either of the following messages: You can troubleshoot the exception by using these steps: 1. Confirm that you're using the latest version of MSAL.NET. -1. Confirm that the authority host that you set when building the confidential client application and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](msal-national-cloud.md) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? +1. Confirm that the authority host that you set when building the confidential client application and the authority host that you used with ADAL are similar. In particular, is it the same [cloud](/azure/active-directory/develop/msal-national-cloud) (Azure Government, Microsoft Azure operated by 21Vianet, or Azure Germany)? ## Next steps -Learn more about the [differences between ADAL.NET and MSAL.NET apps](msal-net-differences-adal-net.md). -Learn more about [token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md) +Learn more about the [differences between ADAL.NET and MSAL.NET apps](differences-adal-msal-net.md). +Learn more about [token cache serialization in MSAL.NET](token-cache-serialization.md) From e3f83cdacd8f01ec2578489e009d635882386878 Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Tue, 5 Sep 2023 16:33:14 +0300 Subject: [PATCH 58/63] resolve build warnings --- msal-dotnet-articles/TOC.yml | 4 +-- .../acquire-token-silently.md | 8 ++--- .../acquiring-tokens/clear-token-cache.md | 6 ++-- .../desktop-mobile/adfs-support.md | 2 -- .../acquiring-tokens/desktop-mobile/uwp.md | 2 +- .../acquiring-tokens/using-web-browsers.md | 12 +++---- .../confidential-client-assertions.md | 2 +- .../initializing-client-applications.md | 10 +++--- ...iate-confidential-client-config-options.md | 4 +-- ...nstantiate-public-client-config-options.md | 4 +-- .../how-to/differences-adal-msal-net.md | 30 +++++++++--------- .../differences.png | Bin 0 -> 143763 bytes .../confidential-client-application.png | Bin 0 -> 81603 bytes .../msal-net-migration/decision-diagram.png | Bin 0 -> 139437 bytes .../class-diagram.png | Bin 0 -> 92517 bytes .../topology.png | Bin 0 -> 34379 bytes .../portal-01-ios-platform-settings.png | Bin 0 -> 34575 bytes .../topology-native-uwp.png | Bin 0 -> 36587 bytes .../topology-xamarin-native.png | Bin 0 -> 34857 bytes .../embedded-webview.png | Bin 0 -> 48938 bytes .../msal-net-web-browsers/system-browser.png | Bin 0 -> 78145 bytes 21 files changed, 41 insertions(+), 43 deletions(-) create mode 100644 msal-dotnet-articles/media/msal-compare-msaldotnet-and-adaldotnet/differences.png create mode 100644 msal-dotnet-articles/media/msal-net-migration/confidential-client-application.png create mode 100644 msal-dotnet-articles/media/msal-net-migration/decision-diagram.png create mode 100644 msal-dotnet-articles/media/msal-net-token-cache-serialization/class-diagram.png create mode 100644 msal-dotnet-articles/media/msal-net-token-cache-serialization/topology.png create mode 100644 msal-dotnet-articles/media/msal-net-use-brokers-with-xamarin-apps/portal-01-ios-platform-settings.png create mode 100644 msal-dotnet-articles/media/msal-net-uwp-considerations/topology-native-uwp.png create mode 100644 msal-dotnet-articles/media/msal-net-uwp-considerations/topology-xamarin-native.png create mode 100644 msal-dotnet-articles/media/msal-net-web-browsers/embedded-webview.png create mode 100644 msal-dotnet-articles/media/msal-net-web-browsers/system-browser.png diff --git a/msal-dotnet-articles/TOC.yml b/msal-dotnet-articles/TOC.yml index 765a64077..4c91af1a7 100644 --- a/msal-dotnet-articles/TOC.yml +++ b/msal-dotnet-articles/TOC.yml @@ -146,9 +146,9 @@ - name: Differences between ADAL.NET and MSAL.NET href: how-to/differences-adal-msal-net.md - name: Migrate broker-enabled Xamarin Android app MSAL.NET - href: migrate-android-broker.md + href: how-to/migrate-android-broker.md - name: Migrate broker-enabled Xamarin iOS app MSAL.NET - href: migrate-ios-broker.md + href: how-to/migrate-ios-broker.md - name: Install NuGet package from other sources href: how-to/install-nuget-custom-source.md - name: Synchronous programming diff --git a/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md index 3c1696950..2ae8fc380 100644 --- a/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md +++ b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md @@ -24,13 +24,13 @@ You can monitor the source of the tokens by inspecting the [`AuthenticationResul ## Websites and web APIs -ASP.NET Core and ASP.NET Classic websites should integrate with [Microsoft.Identity.Web](microsoft-identity-web.md), a wrapper for MSAL.NET. Memory token caching or distributed token caching can be configured as described in [token cache serialization](msal-net-token-cache-serialization.md?tabs=aspnetcore). +ASP.NET Core and ASP.NET Classic websites should integrate with [Microsoft.Identity.Web](../microsoft-identity-web/index.md), a wrapper for MSAL.NET. Memory token caching or distributed token caching can be configured as described in [token cache serialization](token-cache-serialization.md?tabs=aspnetcore). -Web APIs on ASP.NET Core should use Microsoft.Identity.Web. Web APIs on ASP.NET classic, use MSAL directly, by calling `AcquireTokenOnBehalfOf` and should configure memory or distributed caching. For more information, see [Token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md?tabs=aspnet). There's no reason to call the `AcquireTokenSilent` API as there's no API to clear the cache. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis etc. +Web APIs on ASP.NET Core should use Microsoft.Identity.Web. Web APIs on ASP.NET classic, use MSAL directly, by calling `AcquireTokenOnBehalfOf` and should configure memory or distributed caching. For more information, see [Token cache serialization in MSAL.NET](token-cache-serialization.md?tabs=aspnet). There's no reason to call the `AcquireTokenSilent` API as there's no API to clear the cache. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis etc. ## Web service / Daemon apps -Applications that request tokens for an app identity, with no user involved, by calling `AcquireTokenForClient` can either rely on MSAL's internal caching, define their own memory token caching or distributed token caching. For instructions and more information, see [Token cache serialization in MSAL.NET](msal-net-token-cache-serialization.md?tabs=aspnet). +Applications that request tokens for an app identity, with no user involved, by calling `AcquireTokenForClient` can either rely on MSAL's internal caching, define their own memory token caching or distributed token caching. For instructions and more information, see [Token cache serialization in MSAL.NET](token-cache-serialization.md?tabs=aspnet). Since no user is involved, there's no reason to call `AcquireTokenSilent`. `AcquireTokenForClient` will look in the cache on its own as there's no API to clear the cache. Cache size is proportional with the number of tenants and resources you need tokens for. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis, etc. @@ -38,7 +38,7 @@ Since no user is involved, there's no reason to call `AcquireTokenSilent`. `Acqu Desktop, command-line, and mobile applications should first call the `AcquireTokenSilent` method to verify if an acceptable token is in the cache. In many cases, it's possible to acquire another token with more scopes based on a token in the cache. It's also possible to refresh a token when it's getting close to expiration (as the token cache also contains a refresh token). -For authentication flows that require a user interaction, MSAL caches the access, refresh, and ID tokens, and the `IAccount` object, which represents information about a single account. Learn more about [IAccount](/dotnet/api/microsoft.identity.client.iaccount?view=msal-dotnet-latest&preserve-view=true). For application flows, such as [client credentials](msal-authentication-flows.md#client-credentials), only access tokens are cached, because the `IAccount` object and ID token require a user, and the refresh token isn't applicable. +For authentication flows that require a user interaction, MSAL caches the access, refresh, and ID tokens, and the `IAccount` object, which represents information about a single account. Learn more about [IAccount](/dotnet/api/microsoft.identity.client.iaccount?view=msal-dotnet-latest&preserve-view=true). For application flows, such as [client credentials](/azure/active-directory/develop/msal-authentication-flows#client-credentials), only access tokens are cached, because the `IAccount` object and ID token require a user, and the refresh token isn't applicable. The recommended pattern is to call the `AcquireTokenSilent` method first. If `AcquireTokenSilent` fails, then acquire a token using other methods. diff --git a/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md index 30c2d613d..40a40246c 100644 --- a/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md +++ b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md @@ -20,11 +20,11 @@ ms.custom: devx-track-csharp, aaddev, devx-track-dotnet ## Web API and daemon apps -There is no API to remove the tokens from the cache. Cache size should be handled by setting eviction policies on the underlying storage. See [Cache Serialization](msal-net-token-cache-serialization.md?tabs=aspnetcore) for details on how to use a memory cache or distributed cache. +There is no API to remove the tokens from the cache. Cache size should be handled by setting eviction policies on the underlying storage. See [Cache Serialization](token-cache-serialization.md?tabs=aspnetcore) for details on how to use a memory cache or distributed cache. ## Desktop, command line and mobile applications -When you [acquire an access token](msal-acquire-cache-tokens.md) using the Microsoft Authentication Library for .NET (MSAL.NET), the token is cached. When the application needs a token, it should first call the `AcquireTokenSilent` method to verify if an acceptable token is in the cache. +When you [acquire an access token](/azure/active-directory/develop/msal-acquire-cache-tokens) using the Microsoft Authentication Library for .NET (MSAL.NET), the token is cached. When the application needs a token, it should first call the `AcquireTokenSilent` method to verify if an acceptable token is in the cache. Clearing the cache is achieved by removing the accounts from the cache. This does not remove the session cookie which is in the browser, though. The following example instantiates a public client application, gets the accounts for the application, and removes the accounts. @@ -48,4 +48,4 @@ while (accounts.Any()) ``` -To learn more about acquiring and caching tokens, read [acquire an access token](msal-acquire-cache-tokens.md). +To learn more about acquiring and caching tokens, read [acquire an access token](/azure/active-directory/develop/msal-acquire-cache-tokens.) diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md index 342c6db66..3872d4ff7 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md @@ -54,8 +54,6 @@ Currently, there are no plans to support a direct connection to: - AD FS 16, as it doesn't support PKCE and still uses resources, not scope - AD FS v2, which is not OIDC-compliant. - If you need to support scenarios requiring a direct connection to AD FS 2016, use the latest version of [Azure Active Directory Authentication Library](../azuread-dev/active-directory-authentication-libraries.md#microsoft-supported-client-libraries). When you have upgraded your on-premises system to AD FS 2019, you'll be able to use MSAL.NET. - However for MSAL.NET we have no plans to support a direct connection to ADFS 2016 (it does not support PKCE and still uses resources, not scope). When you have upgraded your on-premise system to ADFS 2019, you'll be able to use MSAL.NET. MSAL does not support Integrated Windows Authentication (by calling `AcquireTokenByIntegratedWindowsAuth`) directly to ADFS. diff --git a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md index fa07ecbe9..2d1745f8a 100644 --- a/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md +++ b/msal-dotnet-articles/acquiring-tokens/desktop-mobile/uwp.md @@ -1,5 +1,5 @@ --- -title: Using MSAL.NET with UWP applications +title: Using MSAL.NET with UWP applications description: Learn how to build MSAL.NET applications on the Universal Windows Platform." services: active-directory author: Dickson-Mwendia diff --git a/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md b/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md index 69a8446e8..7670c5e9c 100644 --- a/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md +++ b/msal-dotnet-articles/acquiring-tokens/using-web-browsers.md @@ -28,7 +28,7 @@ It's important to understand that when acquiring a token interactively, the cont - The password (if one was typed) is never stored by the application, nor the authentication library. - Enables redirections to other identity providers (for instance login-in with a work school account or a personal account with MSAL, or with a social account with Azure AD B2C). -- Lets the STS control Conditional Access, for example, by having the user do [multi-factor authentication (MFA)](../authentication/concept-mfa-howitworks.md) during the authentication phase (entering a Windows Hello pin, or being called on their phone, or on an authentication app on their phone). In cases where the required multi-factor authentication isn't set it up yet, the user can set it up just in time in the same dialog. The user enters their mobile phone number and is guided to install an authentication application and scan a QR tag to add their account. This server driven interaction is a great experience! +- Lets the STS control Conditional Access, for example, by having the user do [multi-factor authentication (MFA)](/azure/active-directory/authentication/concept-mfa-howitworks) during the authentication phase (entering a Windows Hello pin, or being called on their phone, or on an authentication app on their phone). In cases where the required multi-factor authentication isn't set it up yet, the user can set it up just in time in the same dialog. The user enters their mobile phone number and is guided to install an authentication application and scan a QR tag to add their account. This server driven interaction is a great experience! - Lets the user change their password in this same dialog when the password has expired (providing additional fields for the old password and the new password). - Enables branding of the tenant, or the application (images) controlled by the Azure AD tenant admin / application owner. - Enables the users to consent to let the application access resources / scopes in their name just after the authentication. @@ -77,7 +77,7 @@ MSAL.NET cannot detect if the user navigates away or simply closes the browser. ### How to use the Default OS Browser -MSAL.NET needs to listen on `http://localhost:port` and intercept the code that AAD sends when the user is done authenticating (See [Authorization code](v2-oauth2-auth-code-flow.md) for details) +MSAL.NET needs to listen on `http://localhost:port` and intercept the code that AAD sends when the user is done authenticating (See [Authorization code](/azure/active-directory/develop/v2-oauth2-auth-code-flow) for details) To enable the system browser: @@ -146,17 +146,17 @@ There are some visual differences between embedded webview and system browser in **Interactive sign-in with MSAL.NET using the Embedded Webview:** -![embedded](media/msal-net-web-browsers/embedded-webview.png) +![embedded](../media/msal-net-web-browsers/embedded-webview.png) **Interactive sign-in with MSAL.NET using the System Browser:** -![System browser](media/msal-net-web-browsers/system-browser.png) +![System browser](../media/msal-net-web-browsers/system-browser.png) ### Developer Options As a developer using MSAL.NET, you have several options for displaying the interactive dialog from STS: -- **System browser.** The system browser is set by default in the library. If using Android, read [system browsers](msal-net-system-browser-android-considerations.md) for specific information about which browsers are supported for authentication. When using the system browser in Android, we recommend the device has a browser that supports Chrome custom tabs. Otherwise, authentication may fail. +- **System browser.** The system browser is set by default in the library. If using Android, read [system browsers](/azure/active-directory/develop/msal-net-system-browser-android-considerations) for specific information about which browsers are supported for authentication. When using the system browser in Android, we recommend the device has a browser that supports Chrome custom tabs. Otherwise, authentication may fail. - **Embedded webview.** To use only embedded webview in MSAL.NET, the `AcquireTokenInteractively` parameters builder contains a `WithUseEmbeddedWebView()` method. iOS @@ -225,4 +225,4 @@ authResult = await App.PCA.AcquireTokenInteractive(App.Scopes) #### .NET Core doesn't support interactive authentication with an embedded browser For .NET Core, acquisition of tokens interactively is only available through the system web browser, not with embedded web views. Indeed, .NET Core doesn't provide UI yet. -If you want to customize the browsing experience with the system web browser, you can implement the [IWithCustomUI](scenario-desktop-acquire-token-interactive.md#withcustomwebui) interface and even provide your own browser. +If you want to customize the browsing experience with the system web browser, you can implement the [IWithCustomUI](/azure/active-directory/develop/scenario-desktop-acquire-token-interactive#withcustomwebui) interface and even provide your own browser. diff --git a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md index f7d84b7aa..0cb889883 100644 --- a/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md +++ b/msal-dotnet-articles/acquiring-tokens/web-apps-apis/confidential-client-assertions.md @@ -56,7 +56,7 @@ app = ConfidentialClientApplicationBuilder.Create(config.ClientId) .Build(); ``` -The [claims expected by Azure AD](./certificate-credentials.md) in the signed assertion are: +The [claims expected by Azure AD](/azure/active-directory/develop/certificate-credentials) in the signed assertion are: Claim type | Value | Description ---------- | ---------- | ---------- diff --git a/msal-dotnet-articles/getting-started/initializing-client-applications.md b/msal-dotnet-articles/getting-started/initializing-client-applications.md index 4165a50e9..9dfbba4e0 100644 --- a/msal-dotnet-articles/getting-started/initializing-client-applications.md +++ b/msal-dotnet-articles/getting-started/initializing-client-applications.md @@ -18,13 +18,13 @@ ms.custom: devx-track-csharp, aaddev, engagement-fy23, devx-track-dotnet # Initialize client applications using MSAL.NET -This article describes initializing public client and confidential client applications using the Microsoft Authentication Library for .NET (MSAL.NET). To learn more about the client application types, see [Public client and confidential client applications](msal-client-applications.md). +This article describes initializing public client and confidential client applications using the Microsoft Authentication Library for .NET (MSAL.NET). To learn more about the client application types, see [Public client and confidential client applications](/azure/active-directory/develop/msal-client-applications). With MSAL.NET 3.x, the recommended way to instantiate an application is by using the application builders: `PublicClientApplicationBuilder` and `ConfidentialClientApplicationBuilder`. They offer a powerful mechanism to configure the application from the code, a configuration file, or even by mixing both approaches. ## Prerequisites -Before initializing an application, you first need to register it so that your app can be integrated with the Microsoft identity platform. Refer to the [Quickstart: Register an application with the Microsoft identity platform](quickstart-register-app.md) for more information. After registration, you may need the following information (which can be found in the Azure portal): +Before initializing an application, you first need to register it so that your app can be integrated with the Microsoft identity platform. Refer to the [Quickstart: Register an application with the Microsoft identity platform](/azure/active-directory/develop/quickstart-register-app) for more information. After registration, you may need the following information (which can be found in the Azure portal): - **Application (client) ID** - This is a string representing a GUID. - **Directory (tenant) ID** - Provides identity and access management (IAM) capabilities to applications and resources used by your organization. It can specify if you're writing a line of business application solely for your organization (also named single-tenant application). @@ -155,7 +155,7 @@ app = PublicClientApplicationBuilder.Create(clientId) [Library source code](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) -[Code samples](sample-v2-code.md) +[Code samples](/azure/active-directory/develop/sample-v2-code) ## Next steps @@ -163,5 +163,5 @@ After you've initialized the client application, your next task is to add suppor Our application scenario documentation provides guidance for signing in a user and acquiring an access token to access an API on behalf of that user: -- [Web app that signs in users: Sign-in and sign-out](scenario-web-app-sign-user-sign-in.md) -- [Web app that calls web APIs: Acquire a token](scenario-web-app-call-api-acquire-token.md) +- [Web app that signs in users: Sign-in and sign-out](/azure/active-directory/develop/scenario-web-app-sign-user-sign-in) +- [Web app that calls web APIs: Acquire a token](/azure/active-directory/develop/scenario-web-app-call-api-acquire-token) diff --git a/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md b/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md index cc24a44c5..14fc7f5f0 100644 --- a/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md +++ b/msal-dotnet-articles/getting-started/instantiate-confidential-client-config-options.md @@ -18,9 +18,9 @@ ms.custom: devx-track-csharp, aaddev, devx-track-dotnet # Instantiate a confidential client application with configuration options using MSAL.NET -This article describes how to instantiate a [confidential client application](msal-client-applications.md) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. +This article describes how to instantiate a [confidential client application](/azure/active-directory/develop/msal-client-applications) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. -Before initializing an application, you first need to [register](quickstart-register-app.md) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): +Before initializing an application, you first need to [register](/azure/active-directory/develop/quickstart-register-app) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): - The client ID (a string representing a GUID) - The identity provider URL (named the instance) and the sign-in audience for your application. These two parameters are collectively known as the authority. diff --git a/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md b/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md index f83934b66..4da8d0b3a 100644 --- a/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md +++ b/msal-dotnet-articles/getting-started/instantiate-public-client-config-options.md @@ -18,9 +18,9 @@ ms.custom: devx-track-csharp, aaddev, devx-track-dotnet # Instantiate a public client application with configuration options using MSAL.NET -This article describes how to instantiate a [public client application](msal-client-applications.md) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. +This article describes how to instantiate a [public client application](/azure/active-directory/develop/msal-client-applications) using the Microsoft Authentication Library for .NET (MSAL.NET). The application is instantiated with configuration options defined in a settings file. -Before initializing an application, you first need to [register](quickstart-register-app.md) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): +Before initializing an application, you first need to [register](/azure/active-directory/develop/quickstart-register-app) it so that your app can be integrated with the Microsoft identity platform. After registration, you may need the following information (which can be found in the Azure portal): - The client ID (a string representing a GUID) - The identity provider URL (named the instance) and the sign-in audience for your application. These two parameters are collectively known as the authority. diff --git a/msal-dotnet-articles/how-to/differences-adal-msal-net.md b/msal-dotnet-articles/how-to/differences-adal-msal-net.md index 252d50633..dc7a985ae 100644 --- a/msal-dotnet-articles/how-to/differences-adal-msal-net.md +++ b/msal-dotnet-articles/how-to/differences-adal-msal-net.md @@ -24,7 +24,7 @@ You still need to use ADAL.NET if your application needs to sign in users with e ## Prerequisites -Go through [MSAL overview](./msal-overview.md) to learn more about MSAL. +Go through [MSAL overview](entra/msal/overview) to learn more about MSAL. ## Differences @@ -46,31 +46,31 @@ Below is a summary comparing MSAL.NET and ADAL.NET supported grants for both pub The following image summarizes some of the differences between ADAL.NET and MSAL.NET for a public client application. -[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a public client application.](media/msal-compare-msaldotnet-and-adaldotnet/differences.png)](media/msal-compare-msaldotnet-and-adaldotnet/differences.png#lightbox) +[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a public client application.](../media/msal-compare-msaldotnet-and-adaldotnet/differences.png)](media/msal-compare-msaldotnet-and-adaldotnet/differences.png#lightbox) Here are the grants supported in ADAL.NET and MSAL.NET for Desktop and Mobile applications. Grant | MSAL.NET | ADAL.NET | --------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -Interactive | [Acquiring tokens interactively in MSAL.NET](scenario-desktop-acquire-token-interactive.md) | [Interactive Auth](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-interactively---Public-client-application-flows) | -Integrated Windows authentication | [Integrated Windows authentication](scenario-desktop-acquire-token-integrated-windows-authentication.md) | [Integrated authentication on Windows (Kerberos)](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-Integrated-authentication-on-Windows-(Kerberos)) | -Username / Password | [Username-password authentication](scenario-desktop-acquire-token-username-password.md) | [Acquiring tokens with username and password](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-username-and-password) | -Device code flow | [Device code flow](scenario-desktop-acquire-token-device-code-flow.md) | [Device profile for devices without web browsers](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Device-profile-for-devices-without-web-browsers) | +Interactive | [Acquiring tokens interactively in MSAL.NET](/azure/active-directory/develop/scenario-desktop-acquire-token-interactive) | [Interactive Auth](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-interactively---Public-client-application-flows) | +Integrated Windows authentication | [Integrated Windows authentication](/azure/active-directory/develop/scenario-desktop-acquire-token-integrated-windows-authentication) | [Integrated authentication on Windows (Kerberos)](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-Integrated-authentication-on-Windows-(Kerberos)) | +Username / Password | [Username-password authentication](/azure/active-directory/develop/scenario-desktop-acquire-token-username-password) | [Acquiring tokens with username and password](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-username-and-password) | +Device code flow | [Device code flow](/azure/active-directory/develop/scenario-desktop-acquire-token-device-code-flow) | [Device profile for devices without web browsers](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Device-profile-for-devices-without-web-browsers) | ### Confidential client applications The following image summarizes some of the differences between ADAL.NET and MSAL.NET for a confidential client application. -[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a confidential client application.](media/msal-net-migration/confidential-client-application.png)](media/msal-net-migration/confidential-client-application.png#lightbox) +[![Screenshot showing some of the differences between ADAL.NET and MSAL.NET for a confidential client application.](../media/msal-net-migration/confidential-client-application.png)](../media/msal-net-migration/confidential-client-application.png#lightbox) Here are the grants supported in ADAL.NET, MSAL.NET, and Microsoft.Identity.Web for web applications, web APIs, and daemon applications. Type of App | Grant | MSAL.NET | ADAL.NET | ------------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -Web app, web API, daemon | Client Credentials | [Client credential flows in MSAL.NET](scenario-daemon-acquire-token.md#acquiretokenforclient-api) | [Client credential flows in ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Client-credential-flows) | +Web app, web API, daemon | Client Credentials | [Client credential flows in MSAL.NET](/azure/active-directory/develop/scenario-daemon-acquire-token#acquiretokenforclient-api) | [Client credential flows in ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Client-credential-flows) | Web API | On behalf of | [On behalf of in MSAL.NET](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/on-behalf-of) | [Service to service calls on behalf of the user with ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Service-to-service-calls-on-behalf-of-the-user) | -Web app | Auth Code | [Acquiring tokens with authorization codes on web apps with A MSAL.NET](scenario-web-app-call-api-acquire-token.md) | [Acquiring tokens with authorization codes on web apps with ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-authorization-codes-on-web-apps) | +Web app | Auth Code | [Acquiring tokens with authorization codes on web apps with A MSAL.NET](/azure/active-directory/develop/scenario-web-app-call-api-acquire-token) | [Acquiring tokens with authorization codes on web apps with ADAL.NET](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/Acquiring-tokens-with-authorization-codes-on-web-apps) | ## Migrating from ADAL 2.x with refresh tokens @@ -128,15 +128,15 @@ An access token and an ID token are returned in the `AuthenticationResult` value ## v1.0 and v2.0 tokens -There are two versions of tokens: v1.0 tokens and v2.0 tokens. The v1.0 endpoint (used by ADAL) emits v1.0 ID tokens while the v2.0 endpoint (used by MSAL) emits v2.0 ID tokens. However, both endpoints emit access tokens of the version of the token that the web API accepts. A property of the application manifest of the web API enables developers to choose which version of token is accepted. See `accessTokenAcceptedVersion` in the [application manifest](reference-app-manifest.md) reference documentation. +There are two versions of tokens: v1.0 tokens and v2.0 tokens. The v1.0 endpoint (used by ADAL) emits v1.0 ID tokens while the v2.0 endpoint (used by MSAL) emits v2.0 ID tokens. However, both endpoints emit access tokens of the version of the token that the web API accepts. A property of the application manifest of the web API enables developers to choose which version of token is accepted. See `accessTokenAcceptedVersion` in the [application manifest]/azure/active-directory/develop/(reference-app-manifest) reference documentation. -For more information about v1.0 and v2.0 access tokens, see [Azure Active Directory access tokens](access-tokens.md). +For more information about v1.0 and v2.0 access tokens, see [Azure Active Directory access tokens](/azure/active-directory/develop/access-tokens). ## Exceptions ### Interaction required exceptions -Using MSAL.NET, you catch `MsalUiRequiredException` as described in [AcquireTokenSilent](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-a-cached-token). +Using MSAL.NET, you catch `MsalUiRequiredException` as described in [AcquireTokenSilent](../acquiring-tokens/acquire-token-silently.md) ```csharp catch(MsalUiRequiredException exception) @@ -145,7 +145,7 @@ catch(MsalUiRequiredException exception) } ``` -For details, see [Handle errors and exceptions in MSAL.NET](msal-error-handling-dotnet.md) +For details, see [Handle errors and exceptions in MSAL.NET](../advanced/exceptions/index.md) ADAL.NET had less explicit exceptions. For example, when silent authentication failed in ADAL the procedure was to catch the exception and look for the `user_interaction_required` error code: @@ -183,7 +183,7 @@ In MSAL.NET, claim challenge exceptions are handled in the following way: - The `Claims` are surfaced in the `MsalServiceException`. - There's a `.WithClaim(claims)` method that can apply to the `AcquireTokenXXX` builders. -For details see [Handling MsalUiRequiredException](msal-error-handling-dotnet.md#msaluirequiredexception). +For details see [Handling MsalUiRequiredException](../advanced/exceptions/msal-error-handling.md#msaluirequiredexception). In ADAL.NET, claim challenge exceptions were handled in the following way: @@ -244,4 +244,4 @@ For a client credential flow, the scope to pass would also be `/.default`. This ## Next steps [Migrate your apps from ADAL to MSAL](msal-net-migration.md) -[Migrate your ADAL.NET confidential client apps to use MSAL.NET](msal-net-migration-confidential-client.md) +[Migrate your ADAL.NET confidential client apps to use MSAL.NET](migrate-confidential-client.md) diff --git a/msal-dotnet-articles/media/msal-compare-msaldotnet-and-adaldotnet/differences.png b/msal-dotnet-articles/media/msal-compare-msaldotnet-and-adaldotnet/differences.png new file mode 100644 index 0000000000000000000000000000000000000000..da1c4fb13e8f094f9a1019f1de4f58c8ff48ac64 GIT binary patch literal 143763 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℘K=EZn~` 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 literal 0 HcmV?d00001 diff --git a/msal-dotnet-articles/media/msal-net-migration/confidential-client-application.png b/msal-dotnet-articles/media/msal-net-migration/confidential-client-application.png new file mode 100644 index 0000000000000000000000000000000000000000..2a127fda9462b0820ba69fb4e43961c8bc626d54 GIT binary patch literal 81603 zcmeFYWmsIx)&__>G{Id$umFt(cM{wKNt!@#cMI;;Xdpmv_XLLkO>k+ffd)eGU_pb^ z1efWYoOAD;x!?C^o|#`WKcJu5yLQ#8TJKu5s@7Z4+L}s)crAFmx804*Jbw%NY;`}@Zkk)BF98n8ucoJw$EkZXy|t-PnM+8TCKK59D%F;j@bGPyU2$F6#=*fD zZ1@ol#2*EP^Y&S#y5Zf?D*Edk>VRZjTB9nJ(<{@2=Vk;Hgyu!ijoj{iY=DC3_;WLJ z{k?+Y@X7{1oWq@+omQ{I=dbs$)Y^jr|BQI;6jM?eEt&4d5@y7XO_@)Y$g60 z?YqrW_6bAPnH~Lm2uHIRj~uAn&C|30h5_tn;>gKQ{<5ApjZe_^W?q-$VYG^Yq%gHz z;v`~15OT{sUZ-QyRBP+;$a1vX3=pqi3XTlfa;KvtlzFwY1e(q1Mik5nAYoei0mju2 zRFuo^!3AGJ(X-iS>GgA?VdCPk?r+Wa_tCT>&*f_PycG=Q#4_%RpC#ua>$^(?F9?2G z-y_O)FnlMrg`Hz~TX3v5K`I|rQZFsyZ1&3`7t$8FxI8~{WJgB+BKZ14N@K;*T}M^z z5x*^S-5R0U`))r7=9h^`O(JP$k9v+~pECTOeIW+E^iB@2zJaQG#D|d`l6U%J@a#1Q z({ef08d9wdDl7c?4RfO(_{EwOem2~A5>MQObxKXWu;5@b7zk-sOD%0?duC)5h4bVZ z*rLvFkhA>!OCNFs4drRnZG}~P+3G>h&759tHi18hNRTMAGW2G}kW0+N4xH7)7-qSfHx9a~EJm!X( znBi(D*-a$8O~Q=wx8!{rw(!N}0v4WH_kA@(YC)DIK;tgMZ)Z^Gy zUg?Dfx?@Lu3(%wzAcN4qwQ@XJ2_oq05dS)Wjv)OltIQ&`+LYSS*TmZ)9St~@nrd11C5hEL^wqhLWS zt0~hrKsi={w=VP}>Z~YI4v_3a<`Mif0pKFwIEeEVrQy3$WQI^b1C8W)sK2}$>7w!u zb(lNA;C-G*I0G|ddsC!1Hl+)fG@k&S@#zy8LBJR5+Ty%G`Nigh%A>)Y}N{c z^j1fmX3DANT8+%Yc-|U`v(s?GgD2stU6RSV7^%LkokVN(x7

HM%foZsX27e~%Q; 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≥0s2rtHp)X(RiYF1 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

  • j*D-=gQG+Kgy1 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 S)e+ttxN^z#V#$S@fBb(-YKc(* literal 0 HcmV?d00001 diff --git a/msal-dotnet-articles/media/msal-net-token-cache-serialization/class-diagram.png b/msal-dotnet-articles/media/msal-net-token-cache-serialization/class-diagram.png new file mode 100644 index 0000000000000000000000000000000000000000..2620c60529eaee60cf2f493894e1d994b1cb4a92 GIT binary patch literal 92517 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 literal 0 HcmV?d00001 diff --git a/msal-dotnet-articles/media/msal-net-token-cache-serialization/topology.png b/msal-dotnet-articles/media/msal-net-token-cache-serialization/topology.png new file mode 100644 index 0000000000000000000000000000000000000000..e91a5f4ba9952d3a4c04be36f70d018936f8a979 GIT binary patch literal 34379 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 literal 0 HcmV?d00001 diff --git a/msal-dotnet-articles/media/msal-net-uwp-considerations/topology-native-uwp.png b/msal-dotnet-articles/media/msal-net-uwp-considerations/topology-native-uwp.png new file mode 100644 index 0000000000000000000000000000000000000000..a47f2471b51bc1385e10851016fd6428960342fd GIT binary patch literal 36587 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 Vp@ardDSaPs!0p}a$Y+C7{|oEk{qX<* literal 0 HcmV?d00001 diff --git a/msal-dotnet-articles/media/msal-net-uwp-considerations/topology-xamarin-native.png b/msal-dotnet-articles/media/msal-net-uwp-considerations/topology-xamarin-native.png new file mode 100644 index 0000000000000000000000000000000000000000..3f43e113ae00f9f7fcceb23b582f52cddae70dcd GIT binary patch literal 34857 zcmZ^~b9AIn)HNC#9ov}+XOc{8+qP}nwr$%^W@4KY+sVZ2IJbZAd%yerb$hL6^{U2G zr|Q|Y>zsW~MJmXNBO~A=fPsM_OG=0+fq{Y7f-VL)2+${V5E|5mcaYF@1_MKP`R@YXHY4!>0}Jnw6cJSM(7ViqHNafyY@2nsivzrz=>i=l0=*IJn4XE_ zh`6y2hc~%wa#B#Pw*KH;rQIHk#@~65oIj?er1YIQAbc7OLRD~fL3j8$bOdy!3UK)1 zszKUdbHwanXJV`fcJOt~<>U}H^ZX8sHyVv2dU<)7KSdB6m6n!vc6QeNncf*GfXgH> zr>U=x%8nzucwAO^3^j|$wY9#Um6~drCe9ni03&UhRt&4EDhO3BlPM&U!1zlN^pcXQ zs;FR`9PEStXP~NzHFP;hH9HRnm0CbU96w4g4uA6)be%bE#ykl%Fh)T^F<24DJ}EpM z`PM(bNcqcSmpM>=gkA(5;1Yn61r1?X0 zBJ7eNKpNu~fr1VfGLJGZ2ocD*PR1nxdV<^{u<#+L#T8^Wb!cG_MZxp3(iKfJy(=2{ z!KKG)19-9;%U3${4=1g*W|opGBVm>x023htv7; z;)PEL2Mui=YK+iAM{!cztkb`bwnx{EL}VIdrdUJKDlmIiYbuDCRR7aSw>W;Pz@Z61 z6ocOf-=qKeXQU6j*@r$z3HD+Kt&({%gu47j0S>7^^R%c+`1gA%7eJ(0hJ!2uMGV>6 zDxXu&ANKQhFp3}Qh*~;Qf+Gw30p;Pg%^iOVVlRZ03ztac&F#wmYl8k^z;{R9tm`Wo z4|tSyL~#=}y^+1cj2LnXHQHN`g!$FeIQiE1Ppw&i!w+<8*lc_~wv{;2YJ>eZ{_z~^ zv{ys<4f7#%G1iq{MST_jn5P8TUYkohelkJ^5!m8@IEgI*G{=);C+AvwOjY{J=Mj29 zQS6S-a+6X1EIksO$S8m!8+zbYz=aXvRDZY%0afSIWa)eJU;fnXAIJD)RnNeunSNk8 z+rUW`$~Zj+4Dx(GbsrVc6|JLDj)MNcNYTJ`w?c^%XUX}~4%wFb$gTR5`T&@-{1En#qxc* zx0Kev4p*zGtox=L(T=}AQa?MNfG?1k>|srShbD37W$^;1Ug~3SbJZJrsM}9>y^NcA zOKrqQtGt5G=Yyd8&k6u0?3A?7zKV8RbliPLrfyBKadA_GL)Bwoq6x>EhisVM9UK8p z$pYI2VMHsxhklLTrO{{yZL1c3H00C()8N2px>b2}rmBo-O_D~FQ+VoU$IjJZ(_9XK#xdb z^SS=|)<1xk9beQuR{hfm>3`cElwKM9bJDo#Mil_Vng7M4-kiQ`i|=| zt4>4TbZ^Qv1F7QE2C8_0*8&b>OnOB|z(qLN3kG@^imsD~kZoX{&1XwXeB|2Q;%hEV zySy*u^k{H6Xs!}2xi)mTRaIEAM!wI�pb?qw|yzRc^1jpr@@L&)in6H}9q7hvy#E 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 mbIX&%hG7_nVHo|5bN?SX+LFCMz82L00000 Date: Tue, 5 Sep 2023 17:22:41 +0300 Subject: [PATCH 59/63] more updates --- .../acquire-token-silently.md | 6 +++--- .../acquiring-tokens/clear-token-cache.md | 4 ++-- .../how-to/migrate-android-broker.md | 4 ++-- .../how-to/migrate-ios-broker.md | 10 +++++----- .../how-to/msal-net-migration.md | 12 +++++------ .../how-to/token-cache-serialization.md | 20 +++++++++---------- .../error-handling-claims-challenges.md | 4 ++-- .../includes/error-handling-introduction.md | 2 +- 8 files changed, 31 insertions(+), 31 deletions(-) diff --git a/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md index 2ae8fc380..40ca67f89 100644 --- a/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md +++ b/msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md @@ -24,13 +24,13 @@ You can monitor the source of the tokens by inspecting the [`AuthenticationResul ## Websites and web APIs -ASP.NET Core and ASP.NET Classic websites should integrate with [Microsoft.Identity.Web](../microsoft-identity-web/index.md), a wrapper for MSAL.NET. Memory token caching or distributed token caching can be configured as described in [token cache serialization](token-cache-serialization.md?tabs=aspnetcore). +ASP.NET Core and ASP.NET Classic websites should integrate with [Microsoft.Identity.Web](../microsoft-identity-web/index.md), a wrapper for MSAL.NET. Memory token caching or distributed token caching can be configured as described in [token cache serialization](token-cache-serialization?tabs=aspnetcore). -Web APIs on ASP.NET Core should use Microsoft.Identity.Web. Web APIs on ASP.NET classic, use MSAL directly, by calling `AcquireTokenOnBehalfOf` and should configure memory or distributed caching. For more information, see [Token cache serialization in MSAL.NET](token-cache-serialization.md?tabs=aspnet). There's no reason to call the `AcquireTokenSilent` API as there's no API to clear the cache. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis etc. +Web APIs on ASP.NET Core should use Microsoft.Identity.Web. Web APIs on ASP.NET classic, use MSAL directly, by calling `AcquireTokenOnBehalfOf` and should configure memory or distributed caching. For more information, see [Token cache serialization in MSAL.NET](token-cache-serialization?tabs=aspnet). There's no reason to call the `AcquireTokenSilent` API as there's no API to clear the cache. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis etc. ## Web service / Daemon apps -Applications that request tokens for an app identity, with no user involved, by calling `AcquireTokenForClient` can either rely on MSAL's internal caching, define their own memory token caching or distributed token caching. For instructions and more information, see [Token cache serialization in MSAL.NET](token-cache-serialization.md?tabs=aspnet). +Applications that request tokens for an app identity, with no user involved, by calling `AcquireTokenForClient` can either rely on MSAL's internal caching, define their own memory token caching or distributed token caching. For instructions and more information, see [Token cache serialization in MSAL.NET](token-cache-serialization?tabs=aspnet). Since no user is involved, there's no reason to call `AcquireTokenSilent`. `AcquireTokenForClient` will look in the cache on its own as there's no API to clear the cache. Cache size is proportional with the number of tenants and resources you need tokens for. Cache size can be managed by setting eviction policies on the underlying cache store, such as MemoryCache, Redis, etc. diff --git a/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md index 40a40246c..e736c2a3a 100644 --- a/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md +++ b/msal-dotnet-articles/acquiring-tokens/clear-token-cache.md @@ -20,7 +20,7 @@ ms.custom: devx-track-csharp, aaddev, devx-track-dotnet ## Web API and daemon apps -There is no API to remove the tokens from the cache. Cache size should be handled by setting eviction policies on the underlying storage. See [Cache Serialization](token-cache-serialization.md?tabs=aspnetcore) for details on how to use a memory cache or distributed cache. +There is no API to remove the tokens from the cache. Cache size should be handled by setting eviction policies on the underlying storage. See [Cache Serialization](token-cache-serialization?tabs=aspnetcore) for details on how to use a memory cache or distributed cache. ## Desktop, command line and mobile applications @@ -48,4 +48,4 @@ while (accounts.Any()) ``` -To learn more about acquiring and caching tokens, read [acquire an access token](/azure/active-directory/develop/msal-acquire-cache-tokens.) +To learn more about acquiring and caching tokens, read [acquire an access token](/azure/active-directory/develop/msal-acquire-cache-tokens) diff --git a/msal-dotnet-articles/how-to/migrate-android-broker.md b/msal-dotnet-articles/how-to/migrate-android-broker.md index 138f42895..c28001127 100644 --- a/msal-dotnet-articles/how-to/migrate-android-broker.md +++ b/msal-dotnet-articles/how-to/migrate-android-broker.md @@ -17,7 +17,7 @@ ms.custom: aaddev, has-adal-ref # Migrate Android applications that use a broker from ADAL.NET to MSAL.NET -If you have a Xamarin Android app currently using the Azure Active Directory Authentication Library for .NET (ADAL.NET) and an [authentication broker](msal-android-single-sign-on.md), it's time to migrate to the [Microsoft Authentication Library for .NET ](msal-overview.md) (MSAL.NET). +If you have a Xamarin Android app currently using the Azure Active Directory Authentication Library for .NET (ADAL.NET) and an [authentication broker](/azure/active-directory/develop/msal-android-single-sign-on), it's time to migrate to the [Microsoft Authentication Library for .NET ](entra/msal) (MSAL.NET). ## Prerequisites @@ -137,4 +137,4 @@ result = await app.AcquireTokenInteractive(scopes) ## Next steps -For more information about Android-specific considerations when using MSAL.NET with Xamarin, see [Configuration requirements and troubleshooting tips for Xamarin Android with MSAL.NET](msal-net-xamarin-android-considerations.md). \ No newline at end of file +For more information about Android-specific considerations when using MSAL.NET with Xamarin, see [Configuration requirements and troubleshooting tips for Xamarin Android with MSAL.NET](/azure/active-directory/develop/msal-net-xamarin-android-considerations). \ No newline at end of file diff --git a/msal-dotnet-articles/how-to/migrate-ios-broker.md b/msal-dotnet-articles/how-to/migrate-ios-broker.md index 8d87faaa9..0898363b5 100644 --- a/msal-dotnet-articles/how-to/migrate-ios-broker.md +++ b/msal-dotnet-articles/how-to/migrate-ios-broker.md @@ -34,7 +34,7 @@ Brokers are applications provided by Microsoft on Android and iOS. (See the [Mic They enable: - Single sign-on. -- Device identification, which is required by some [Conditional Access policies](../conditional-access/overview.md). For more information, see [Device management](../conditional-access/concept-conditional-access-conditions.md#device-platforms). +- Device identification, which is required by some [Conditional Access policies](/azure/active-directory/conditional-access/overview.md). For more information, see [Device management](/azure/active-directory/conditional-access/concept-conditional-access-conditions.md#device-platforms). - Application identification verification, which is also required in some enterprise scenarios. For more information, see [Intune mobile application management (MAM)](/intune/mam-faq). ## Migrate from ADAL to MSAL @@ -142,7 +142,7 @@ result = await app.AcquireTokenInteractive(scopes) ### Step 3: Update AppDelegate to handle the callback -Both ADAL and MSAL call the broker, and the broker in turn calls back to your application through the `OpenUrl` method of the `AppDelegate` class. For more information, see [this documentation](msal-net-use-brokers-with-xamarin-apps.md#step-3-update-appdelegate-to-handle-the-callback). +Both ADAL and MSAL call the broker, and the broker in turn calls back to your application through the `OpenUrl` method of the `AppDelegate` class. For more information, see [this documentation](/azure/active-directory/develop/msal-net-use-brokers-with-xamarin-apps#step-3-update-appdelegate-to-handle-the-callback). There are no changes here between ADAL.NET and MSAL.NET. @@ -243,7 +243,7 @@ Example: -For more information about how to register the redirect URI in the Azure portal, see [Step 7: Add a redirect URI to your app registration](msal-net-use-brokers-with-xamarin-apps.md#step-7-add-a-redirect-uri-to-your-app-registration). +For more information about how to register the redirect URI in the Azure portal, see [Step 7: Add a redirect URI to your app registration](/azure/active-directory/develop/msal-net-use-brokers-with-xamarin-apps#step-7-add-a-redirect-uri-to-your-app-registration). ### **Step 7: Set the Entitlements.plist** @@ -256,8 +256,8 @@ Enable keychain access in the *Entitlements.plist* file: ``` -For more information about enabling keychain access, see [Enable keychain access](msal-net-xamarin-ios-considerations.md#enable-keychain-access). +For more information about enabling keychain access, see [Enable keychain access](/azure/active-directory/develop/msal-net-xamarin-ios-considerations#enable-keychain-access). ## Next steps -Learn about [Xamarin iOS-specific considerations with MSAL.NET](msal-net-xamarin-ios-considerations.md). \ No newline at end of file +Learn about [Xamarin iOS-specific considerations with MSAL.NET](/azure/active-directory/develop/msal-net-xamarin-ios-considerations). \ No newline at end of file diff --git a/msal-dotnet-articles/how-to/msal-net-migration.md b/msal-dotnet-articles/how-to/msal-net-migration.md index cf6846adc..f1017d6af 100644 --- a/msal-dotnet-articles/how-to/msal-net-migration.md +++ b/msal-dotnet-articles/how-to/msal-net-migration.md @@ -34,11 +34,11 @@ MSAL comes with benefits over ADAL. Some of these benefits are listed below: ## Should you migrate to MSAL.NET or to Microsoft.Identity.Web -Before digging in the details of MSAL.NET vs ADAL.NET, you might want to check if you want to use MSAL.NET or a higher-level abstraction like [Microsoft.Identity.Web](microsoft-identity-web.md). +Before digging in the details of MSAL.NET vs ADAL.NET, you might want to check if you want to use MSAL.NET or a higher-level abstraction like [Microsoft.Identity.Web](../microsoft-identity-web/index.md). For details about the decision tree below, read [MSAL.NET or Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/MSAL.NET-or-Microsoft.Identity.Web). -!["Block diagram explaining how to choose if you need to use MSAL.NET and Microsoft.Identity.Web or both when migrating from ADAL.NET"](media/msal-net-migration/decision-diagram.png) +!["Block diagram explaining how to choose if you need to use MSAL.NET and Microsoft.Identity.Web or both when migrating from ADAL.NET"](../media/msal-net-migration/decision-diagram.png)