netFramework/Microsoft.IdentityModel.Clients.ActiveDirectory.xml
<?xml version="1.0"?>
<doc> <assembly> <name>Microsoft.IdentityModel.Clients.ActiveDirectory</name> </assembly> <members> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext"> <summary> The AuthenticationContext class retrieves authentication tokens from Azure Active Directory and ADFS services. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String)"> <summary> Constructor to create the context with the address of the authority. Using this constructor will turn ON validation of the authority URL by default if validation is supported for the authority address. </summary> <param name="authority">Address of the authority to issue token.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,System.Boolean)"> <summary> Constructor to create the context with the address of the authority and flag to turn address validation off. Using this constructor, address validation can be turned off. Make sure you are aware of the security implication of not validating the address. </summary> <param name="authority">Address of the authority to issue token.</param> <param name="validateAuthority">Flag to turn address validation ON or OFF.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache)"> <summary> Constructor to create the context with the address of the authority. Using this constructor will turn ON validation of the authority URL by default if validation is supported for the authority address. </summary> <param name="authority">Address of the authority to issue token.</param> <param name="tokenCache">Token cache used to lookup cached tokens on calls to AcquireToken</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,System.Boolean,Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache)"> <summary> Constructor to create the context with the address of the authority and flag to turn address validation off. Using this constructor, address validation can be turned off. Make sure you are aware of the security implication of not validating the address. </summary> <param name="authority">Address of the authority to issue token.</param> <param name="validateAuthority">Flag to turn address validation ON or OFF.</param> <param name="tokenCache">Token cache used to lookup cached tokens on calls to AcquireToken. Use <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DefaultShared"/> to use ADAL's implementation of the cache on Android, iOS and UWP. Use null to store tokens only in memory. </param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.#ctor(System.String,System.Boolean,Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache,Microsoft.IdentityModel.Clients.ActiveDirectory.IHttpClientFactory)"> <summary> Constructor to create the context with the address of the authority, flag to turn address validation off and custom IHttpClientFactory. Make sure you are aware of the security implication of not validating the address. </summary> <remarks>See https://aka.ms/adal-net-httpclient for details</remarks> <param name="authority">Address of the authority to issue token.</param> <param name="validateAuthority">Flag to turn address validation ON or OFF.</param> <param name="tokenCache">Token cache used to lookup cached tokens on calls to AcquireToken. Use <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DefaultShared"/> to use ADAL's implementation of the cache on Android, iOS and UWP. Use null to store tokens only in memory.</param> <param name="httpClientFactory">HTTP client factory</param> <remarks>ADAL does not guarantee that it will not modify the HttpClient, for example by adding new headers.</remarks> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.ExtendedLifeTimeEnabled"> <summary> Used to set the flag for AAD extended lifetime </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.Authority"> <summary> Gets address of the authority to issue token. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.ValidateAuthority"> <summary> Gets a value indicating whether address validation is ON or OFF. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.TokenCache"> <summary> ADAL's token cache, where tokens are automatically saved. On some platforms, e.g. iOS, Android and UWP, the TokenCache is backed by a persistent store which is implemeted by ADAL. On other platforms, e.g. .net and .net core - the developer is responsible for implementing a persistent store. If not using a persistent store, an in-memory store is used, which is destroyed once the application stops. To find out more about leveraging the token cache visit: https://aka.ms/adal-net-using-cached-tokens To find out more about implementing a persistent store, visit: https://aka.ms/adal-net-cache-serialization </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.CorrelationId"> <summary> Gets or sets correlation Id which would be sent to the service with the next request. Correlation Id is to be used for diagnostics purposes. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireDeviceCodeAsync(System.String,System.String)"> <summary> Acquires device code from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <returns>It contains Device Code, its expiration time, User Code.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireDeviceCodeAsync(System.String,System.String,System.String)"> <summary> Acquires device code from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param> <returns>It contains Device Code, its expiration time, User Code.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByDeviceCodeAsync(Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult)"> <summary> Acquires security token from the authority using an device code previously received. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="deviceCodeResult">The device code result received from calling AcquireDeviceCodeAsync.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByDeviceCodeAsync(Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult,System.Threading.CancellationToken)"> <summary> Acquires security token from the authority using an device code previously received. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="deviceCodeResult">The device code result received from calling AcquireDeviceCodeAsync.</param> <param name="cancellationToken">A CancellationToken which can be triggered to cancel the operation in progress.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String,System.String,System.Threading.SynchronizationContext)"> <summary> Acquires an access token from the authority on behalf of a user, passing in the necessary claims for authentication. It requires using a user token previously received. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="parameters">Instance of PlatformParameters containing platform specific arguments and information.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param> <param name="claims">Additional claims that are needed for authentication. Acquired from the AdalClaimChallengeException</param> <param name="synchronizationContext">Optional SynchronizationContext for ensuring interactive calls are executed on the UI thread.</param> <returns>It contains Access Token and the Access Token's expiration time.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <param name="parameters">Instance of PlatformParameters containing platform specific arguments and information.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="parameters">An object of type PlatformParameters which may pass additional parameters used for authorization.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="parameters">An object of type PlatformParameters which may pass additional parameters used for authorization.</param> <param name="userId">Identifier of the user token is requested for. If created from DisplayableId, this parameter will be used to pre-populate the username field in the authentication form. Please note that the end user can still edit the username field and authenticate as a different user. If you want to be notified of such change with an exception, create UserIdentifier with type RequiredDisplayableId. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="userId">Identifier of the user token is requested for. If created from DisplayableId, this parameter will be used to pre-populate the username field in the authentication form. Please note that the end user can still edit the username field and authenticate as a different user. If you want to be notified of such change with an exception, create UserIdentifier with type RequiredDisplayableId. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <param name="parameters">Parameters needed for interactive flow requesting authorization code. Pass an instance of PlatformParameters.</param> <param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.GetAuthorizationRequestUrlAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String)"> <summary> Gets URL of the authorize endpoint including the query parameters. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param> <returns>URL of the authorize endpoint including the query parameters.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.GetAuthorizationRequestUrlAsync(System.String,System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier,System.String,System.String)"> <summary> Gets URL of the authorize endpoint including the query parameters. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <param name="extraQueryParameters">This parameter will be appended as is to the query string in the HTTP authentication request to the authority. The parameter can be null.</param> <param name="claims">Additional claims that are needed for authentication. Acquired from the AdalClaimChallengeException. This parameter can be null.</param> <returns>URL of the authorize endpoint including the query parameters.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCredential">The client credential to use for token acquisition.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"> <summary> Acquires security token without asking for user credential. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientAssertion">The client assertion to use for token acquisition.</param> <param name="userId">Identifier of the user token is requested for. This parameter can be <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>.Any.</param> <returns>It contains Access Token, its expiration time, user information. If acquiring token without user credential is not possible, the method throws AdalException.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential)"> <summary> Acquires security token from the authority using authorization code previously received. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="clientCredential">The credential to use for token acquisition.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,System.String)"> <summary> Acquires security token from the authority using an authorization code previously received. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">Address to return to upon receiving a response from the authority.</param> <param name="clientCredential">The credential to use for token acquisition.</param> <param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion)"> <summary> Acquires security token from the authority using an authorization code previously received. This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">The redirect address used for obtaining authorization code.</param> <param name="clientAssertion">The client assertion to use for token acquisition.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,System.String)"> <summary> In a Web App, attemps to acquire a security token from the authority using an authorization code previously received (after a call to one of the overrides of <see cref="M:AcquireTokenByAuthorizationCodeAsync">AcquireTokenByAuthorizationCodeAsync</see>). For more details see https://aka.ms/adal-net-authorization-code. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">The redirect address used for obtaining authorization code.</param> <param name="clientAssertion">The client assertion to use for token acquisition.</param> <param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.String,System.Boolean)"> <summary> In a Web App, attempts to acquire a security token from the authority using an authorization code previously received (after a call to one of the overrides of <see cref="M:AcquireTokenByAuthorizationCodeAsync">AcquireTokenByAuthorizationCodeAsync</see>). For more details see https://aka.ms/adal-net-authorization-code. This method does not lookup token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">The redirect address used for obtaining authorization code.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param> <param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over in Azure AD: setting this parameter to true will send the public certificate to Azure AD along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy. This saves the application admin from the need to explicitly manage the certificate rollover (either via portal or powershell/CLI operation)</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate)"> <summary> Acquires security token from the authority using an authorization code previously received. This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">The redirect address used for obtaining authorization code.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenByAuthorizationCodeAsync(System.String,System.Uri,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.String)"> <summary> Acquires security token from the authority using an authorization code previously received. This method does not lookup the token cache, but stores the result in it, so it can be looked up using other methods such as <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier)"/>. </summary> <param name="authorizationCode">The authorization code received from service authorization endpoint.</param> <param name="redirectUri">The redirect address used for obtaining authorization code.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="resource">Identifier of the target resource that is the recipient of the requested token. It can be null if provided earlier to acquire authorizationCode.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)"> <summary> Acquires an access token from the authority on behalf of a user. It requires using a user token previously received. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCredential">The client credential to use for token acquisition.</param> <param name="userAssertion">The user assertion (token) to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)"> <summary> Acquires an access token from the authority on behalf of a user. It requires using a user token previously received. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="userAssertion">The user assertion (token) to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion,System.Boolean)"> <summary> Acquires an access token from the authority on behalf of a user. It requires using a user token previously received. For more details, see https://aka.ms/adal-net-on-behalf-of </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="userAssertion">The user assertion (token) to use for token acquisition.</param> <param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over in Azure AD: setting this parameter to true will send the public certificate to Azure AD along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy. This saves the application admin from the need to explicitly manage the certificate rollover (either via portal or powershell/CLI operation)</param> <returns>It contains Access Token and the Access Token's expiration time.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)"> <summary> Acquires an access token from the authority on behalf of a user. It requires using a user token previously received. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientAssertion">The client assertion to use for token acquisition.</param> <param name="userAssertion">The user assertion (token) to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="userAssertion">The assertion to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate,System.Boolean)"> <summary> Acquire a security token for the application (without a user) from the authority while enabling simplified Azure AD certificate roll over. For more details, see https://aka.ms/adal-net-client-credentials IMPORTANT: this flow isn’t enabled on the service at the time of this SDK release (ADAL.Net 3.19). </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCertificate">The client certificate to use for token acquisition.</param> <param name="sendX5c">This parameter enables application developers to achieve easy certificates roll-over in Azure AD: setting this parameter to true will send the public certificate to Azure AD along with the token request, so that Azure AD can use it to validate the subject name based on a trusted issuer policy. This saves the application admin from the need to explicitly manage the certificate rollover (either via portal or powershell/CLI operation)</param> <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientAssertion">The client assertion to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential)"> <summary> Acquires security token from the authority. </summary> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientCredential">The client credential to use for token acquisition.</param> <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters"> <summary> Contains authentication parameters based on unauthorized response from resource server. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.Authority"> <summary> Gets or sets the address of the authority to issue token. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.Resource"> <summary> Gets or sets the identifier of the target resource that is the recipient of the requested token. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.#ctor(System.String,System.String)"> <summary> Ctor </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromResourceUrlAsync(System.Uri)"> <summary> Sends a GET request to the url provided with no Authenticate header. If a 401 Unauthorized is received, this helper will parse the WWW-Authenticate header to retrieve the authority and resource. </summary> <param name="resourceUrl">Address of the resource</param> <returns>AuthenticationParameters object containing authentication parameters</returns> <remarks>Most protected APIs, including those owned by Microsoft, no longer advertise a resource. Authentication should be done using MSAL, which uses scopes. See https://aka.ms/msal-net-migration-adal-msal </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromUrlAsync(System.Uri)"> <summary> Sends a GET request to the url provided with no Authenticate header. If a 401 Unauthorized is received, this helper will parse the WWW-Authenticate header to retrieve the authority and resource. </summary> <param name="resourceUrl">Address of the resource</param> <returns>AuthenticationParameters object containing authentication parameters</returns> <remarks>Most protected APIs, including those owned by Microsoft, no longer advertise a resource. Authentication should be done using MSAL, which uses scopes. See https://aka.ms/msal-net-migration-adal-msal </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromUnauthorizedResponseAsync(System.Net.Http.HttpResponseMessage)"> <summary> Looks at the Http response for an WWW-Authenticate header and parses it to retrieve the authority and resource</summary> <param name="responseMessage">Response received from the resource (e.g. via an http call using HttpClient).</param> <returns>AuthenticationParameters object containing authentication parameters</returns> <remarks>Most protected APIs, including those owned by Microsoft, no longer advertise a resource. Authentication should be done using MSAL, which uses scopes. See https://aka.ms/msal-net-migration-adal-msal </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationParameters.CreateFromResponseAuthenticateHeader(System.String)"> <summary> Creates authentication parameters from the WWW-Authenticate header in response received from resource. This method expects the header to contain authentication parameters. </summary> <param name="authenticateHeader">Content of header WWW-Authenticate header</param> <returns>AuthenticationParameters object containing authentication parameters</returns> <remarks>Most protected APIs, including those owned by Microsoft, no longer advertise a resource. Authentication should be done using MSAL, which uses scopes. See https://aka.ms/msal-net-migration-adal-msal </remarks> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult"> <summary> Contains the results of one token acquisition operation. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.#ctor(Microsoft.Identity.Core.Cache.AdalResult)"> <summary> Creates result returned from AcquireToken. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.AccessTokenType"> <summary> Gets the type of the Access Token returned. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.AccessToken"> <summary> Gets the Access Token requested. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExpiresOn"> <summary> Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid. This value is calculated based on current UTC time measured locally and the value expiresIn received from the service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExtendedExpiresOn"> <summary> Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid in ADAL's extended LifeTime. This value is calculated based on current UTC time measured locally and the value ext_expiresIn received from the service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.ExtendedLifeTimeToken"> <summary> Gives information to the developer whether token returned is during normal or extended lifetime. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.TenantId"> <summary> Gets an identifier for the tenant the token was acquired from. This property will be null if tenant information is not returned by the service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.UserInfo"> <summary> Gets user information including user Id. Some elements in UserInfo might be null if not returned by the service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.IdToken"> <summary> Gets the entire Id Token if returned by the service or null if no Id Token is returned. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.Authority"> <summary> Gets the authority that has issued the token. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult.CreateAuthorizationHeader"> <summary> Creates authorization header from authentication result. </summary> <returns>Created authorization header</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion"> <summary> Credential type containing an assertion of type "urn:ietf:params:oauth:token-type:jwt". </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.#ctor(System.String,System.String)"> <summary> Constructor to create credential with a jwt token encoded as a base64 url encoded string. </summary> <param name="clientId">Identifier of the client requesting the token.</param> <param name="assertion">The jwt used as credential.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.ClientId"> <summary> Gets the identifier of the client requesting the token. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.Assertion"> <summary> Gets the assertion. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertion.AssertionType"> <summary> Gets the assertion type. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential"> <summary> Credential including client id and secret. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.#ctor(System.String,System.String)"> <summary> Constructor to create credential with client id and secret </summary> <param name="clientId">Identifier of the client requesting the token.</param> <param name="clientSecret">Secret of the client requesting the token.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.#ctor(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.ISecureClientSecret)"> <summary> Constructor to create credential with client id and secret. This is only available on desktop. </summary> <param name="clientId">Identifier of the client requesting the token.</param> <param name="secureClientSecret">Secure secret of the client requesting the token.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientCredential.ClientId"> <summary> Gets the identifier of the client requesting the token. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult"> <summary> This class represents the response from the service when requesting device code. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.UserCode"> <summary> User code returned by the service </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.DeviceCode"> <summary> Device code returned by the service </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.VerificationUrl"> <summary> Verification URL where the user must navigate to authenticate using the device code and credentials. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.ExpiresOn"> <summary> Time when the device code will expire. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Interval"> <summary> Polling interval time to check for completion of authentication flow. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Message"> <summary> User friendly text response that can be used for display purpose. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.ClientId"> <summary> Identifier of the client requesting device code. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.DeviceCodeResult.Resource"> <summary> Identifier of the target resource that would be the recipient of the token. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException"> <summary> The exception type thrown when a claims challenge error occurs during token acquisition. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException.Claims"> <summary> Claims challenge returned from the STS. This value should be passed back to the API caller. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalClaimChallengeException.#ctor(System.String,System.String,System.Exception,System.String)"> <summary> Initializes a new instance of the exception class for handling claims. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError"> <summary> Error code returned as a property in AdalException </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IntegratedWindowsAuthNotSupportedForManagedUser"> <summary> Integrated Windows Auth is only supported for "federated" users </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.Unknown"> <summary> Unknown error. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NonHttpsRedirectNotSupported"> <summary> Non https redirect failed </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidArgument"> <summary> Invalid argument. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationFailed"> <summary> Authentication failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationCanceled"> <summary> Authentication canceled. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnauthorizedResponseExpected"> <summary> Unauthorized response expected from resource server. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthorityNotInValidList"> <summary> 'authority' is not in the list of valid addresses. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthorityValidationFailed"> <summary> Authority validation failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AssemblyLoadFailed"> <summary> Loading required assembly failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AssemblyNotFound"> <summary> Assembly not found. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidOwnerWindowType"> <summary> Invalid owner window type. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.MultipleTokensMatched"> <summary> MultipleTokensMatched were matched. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidAuthorityType"> <summary> Invalid authority type. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidCredentialType"> <summary> Invalid credential type. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidServiceUrl"> <summary> Invalid service URL. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FailedToAcquireTokenSilently"> <summary> failed_to_acquire_token_silently. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CertificateKeySizeTooSmall"> <summary> Certificate key size too small. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProtocolLoginUrlNull"> <summary> Identity protocol login URL Null. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProtocolMismatch"> <summary> Identity protocol mismatch. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.EmailAddressSuffixMismatch"> <summary> Email address suffix mismatch. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IdentityProviderRequestFailed"> <summary> Identity provider request failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.StsTokenRequestFailed"> <summary> STS token request failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.EncodedTokenTooLong"> <summary> Encoded token too long. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ServiceUnavailable"> <summary> Service unavailable. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ServiceReturnedError"> <summary> Service returned error. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FederatedServiceReturnedError"> <summary> Federated service returned error. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.StsMetadataRequestFailed"> <summary> STS metadata request failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NoDataFromSts"> <summary> No data from STS. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserMismatch"> <summary> User Mismatch. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnknownUserType"> <summary> Unknown User Type. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UnknownUser"> <summary> Unknown User. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserRealmDiscoveryFailed"> <summary> User Realm Discovery Failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AccessingWsMetadataExchangeFailed"> <summary> Accessing WS Metadata Exchange Failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ParsingWsMetadataExchangeFailed"> <summary> Parsing WS Metadata Exchange Failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.WsTrustEndpointNotFoundInMetadataDocument"> <summary> WS-Trust Endpoint Not Found in Metadata Document. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.ParsingWsTrustResponseFailed"> <summary> Parsing WS-Trust Response Failed. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NetworkNotAvailable"> <summary> The request could not be preformed because the network is down. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.AuthenticationUiFailed"> <summary> The request could not be preformed because of an unknown failure in the UI flow. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UserInteractionRequired"> <summary> One of two conditions was encountered. 1. The PromptBehavior.Never flag was passed and but the constraint could not be honored because user interaction was required. 2. An error occurred during a silent web authentication that prevented the authentication flow from completing in a short enough time frame. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.PasswordRequiredForManagedUserError"> <summary> Password is required for managed user. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.GetUserNameFailed"> <summary> Failed to get user name. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.MissingFederationMetadataUrl"> <summary> Federation Metadata Url is missing for federated user. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FailedToRefreshToken"> <summary> Failed to refresh token. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.IntegratedAuthFailed"> <summary> Integrated authentication failed. You may try an alternative authentication method. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DuplicateQueryParameter"> <summary> Duplicate query parameter in extraQueryParameters </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.BrokerReponseHashMismatch"> <summary> Broker response hash did not match </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.BrokerNonceMismatch"> <summary> Broker response nonce does not match the request nonce sent by MSAL.NET for iOS broker >= v6.3.19 </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCertificateNotFound"> <summary> Device certificate not found. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InteractionRequired"> <summary> Claims step-up required. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidWebBrowserType"> <summary> Invalid web browser type. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.InvalidWebPageResponse"> <summary> Invalid web page response </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.FormPostParsingFailure"> <summary> Form post parsing failure </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.BrokerRedirectUriIncorrectFormat"> <summary> Broker redirectUri has incorrect format </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CannotAccessUserInformationOrUserNotDomainJoined"> <summary> Cannot fetch the upn from the OS, possibly due to missing permissions </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCodeAuthorizationPendingError"> <summary> This library is still polling to see if the user entered the code as instructed by the device code message. This is for information only, not an error. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.DeviceCodeAuthorizationCodeExpired"> <summary> The device code expiered before it was sent to the server </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.UapRedirectUriUnsupported"> <summary> PromptBehavior.Never is supported in SSO mode only (null or application's callback URI as redirectUri) </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.HttpRequestTimeoutResilience"> <summary> An http request has timed out after being retried once </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CustomWebUiReturnedInvalidUri"> <summary> Error code used when the CustomWebUI has returned an uri, but it is invalid - it is either null or has no code. Consider throwing an exception if you are unable to intercept the uri containing the code. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.CustomWebUiRedirectUriMismatch"> <summary> Error code used when the CustomWebUI has returned an uri, but it does not match the Authroity and AbsolutePath of the configured redirect uri. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.NetStandardCustomWebUi"> <summary> Error code used when </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.StateMismatchError"> <summary> State returned from the STS was different from the one sent by the library <para>What happens?</para>The library sends to the STS a state associated to a request, and expects the reply to be consistent. This errors indicates that the reply is not associated with the request. This could indicate an attempt to replay a response <para>Mitigation</para> None </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalError.JsonParseError"> <summary> JSON Parse error. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.AdalErrorMessage"> <summary> The active directory authentication error message. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Broker.NullBroker"> <summary> For platforms that do not support a broker (net desktop, net core, UWP, netstandard) </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenIWAHandler"> <summary> Handler for Integrated Windows Authentication </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.Product"> <summary> ADAL Flavor: PCL.CoreCLR, PCL.Android, PCL.iOS, PCL.Desktop, PCL.WinRT </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.Version"> <summary> ADAL assembly version </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.CpuPlatform"> <summary> CPU platform with x86, x64 or ARM as value </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.OS"> <summary> Version of the operating system. This will not be sent on WinRT </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdParameter.DeviceModel"> <summary> Device model. This will not be sent on .NET </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.AdalIdHelper"> <summary> This class adds additional query parameters or headers to the requests sent to STS. This can help us in collecting statistics and potentially on diagnostics. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper"> <summary> The encoding helper. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.UrlEncode(System.String)"> <summary> URL encode the given string. </summary> <param name="message">String to URL encode</param> <returns>URL encoded string</returns> <remarks>This method encodes the space ' ' character as "+" rather than "%20".</remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.UrlDecode(System.String)"> <summary> Decode the given URL encoded string. </summary> <param name="message">URL encoded string to decode</param> <returns>Decoded string</returns> <remarks>This method decodes "+" (as well as "%20") into the space character ' '.</remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext)"> <summary> Parse a delimited string of key-value pairs in to a dictionary. </summary> <param name="input">Delimited string of key-value pairs</param> <param name="delimiter">Character used as a delimiter between key-value pairs</param> <param name="urlDecode">True to perform URL decoding of both the keys and values</param> <param name="lowercaseKeys">True to make all resulting keys lower-case</param> <param name="requestContext">call state to pass correlation id and logger instance</param> <returns>Dictionary of string key-value pairs</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueListStrict(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext)"> <summary> Parse a delimited string of key-value pairs in to a dictionary. </summary> <param name="input">Delimited string of key-value pairs</param> <param name="delimiter">Character used as a delimiter between key-value pairs</param> <param name="urlDecode">True to perform URL decoding of both the keys and values</param> <param name="lowercaseKeys">True to make all resulting keys lower-case</param> <param name="requestContext">call state to pass correlation id and logger instance</param> <exception cref="T:System.ArgumentException">Thrown if a malformed key-value pair is present in <paramref name="input"/></exception> <returns>Dictionary of string key-value pairs</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,System.Boolean,Microsoft.Identity.Core.RequestContext,System.Boolean)"> <summary> Parse a delimited string of key-value pairs in to a dictionary. </summary> <param name="input">Delimited string of key-value pairs</param> <param name="delimiter">Character used as a delimiter between key-value pairs</param> <param name="urlDecode">True to perform URL decoding of both the keys and values</param> <param name="lowercaseKeys">True to make all resulting keys lower-case</param> <param name="requestContext">call state to pass correlation id and logger instance</param> <param name="strict">Throw <see cref="T:System.ArgumentException"/> when the input string contains a malformed key-value pair</param> <exception cref="T:System.ArgumentException">Thrown if <paramref name="strict"/> is true and a malformed key-value pair is present in <paramref name="input"/></exception> <returns>Dictionary of string key-value pairs</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.ParseKeyValueList(System.String,System.Char,System.Boolean,Microsoft.Identity.Core.RequestContext)"> <summary> Parse a delimited string of key-value pairs in to a dictionary. </summary> <param name="input">Delimited string of key-value pairs</param> <param name="delimiter">Character used as a delimiter between key-value pairs</param> <param name="urlDecode">True to perform URL decoding of both the keys and values</param> <param name="requestContext">call state to pass correlation id and logger instance</param> <remarks>Keys are forced to lower-cased</remarks> <returns>Dictionary of string key-value pairs</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.GenerateStreamFromString(System.String)"> <summary> Create a <see cref="T:System.IO.Stream"/> from the given string. </summary> <param name="s">String to create a <see cref="T:System.IO.Stream"/> from</param> <returns><see cref="T:System.IO.Stream"/> from a string</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.DeserializeResponse``1(System.String)"> <summary> Deserialize the given JSON string in to the specified type <typeparamref name="T"/> </summary> <typeparam name="T">Type to deserialize the JSON as</typeparam> <param name="response">JSON string</param> <returns>Deserialized type <typeparamref name="T"/></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.Base64Encode(System.String)"> <summary> Base64 encode the given string. </summary> <param name="input">String to base64 encode</param> <returns>Base64 encoded string</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.Base64Decode(System.String)"> <summary> Decode the given base64 encoded string. </summary> <param name="encodedString">Base64 encoded string</param> <returns>Decoded string</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Helpers.EncodingHelper.SplitWithQuotes(System.String,System.Char)"> <summary> Split a string into individual elements by the specified delimiter, where a delimiter enclosed within double-quotes '"' is considered to be part of the same single element. </summary> <param name="input">Delimited string</param> <param name="delimiter">Element delimiter</param> <returns>List of elements</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ModuleInitializer"> <summary> Initializes the MSAL module. This can be considered an entry point into MSAL for initialization purposes. </summary> <remarks> The CLR defines a module initializer, however this is not implemented in C# and to use this it would require IL weaving, which does not seem to work on all target frameworks. Instead, call <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ModuleInitializer.EnsureModuleInitialized"/> from static ctors of public entry points. </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ModuleInitializer.EnsureModuleInitialized"> <summary> Handle all the initialization of singletons, factories, statics etc. Initialization will only happen once. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ModuleInitializer.ForceModuleInitializationTestOnly"> <summary> Force initialization of the module, ignoring any previous initializations. Only TESTS should call this method. </summary> <remarks>Tests can access the internals of the module and modify the initialization pattern, so it is acceptable for tests to reinitialize the module. </remarks> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.WebBrowserNavigateErrorEventHandler"> <summary> Delegate to handle navifation errors in the browser control </summary> <param name="sender">object type</param> <param name="e">WebBrowserNavigateErrorEventArgs type</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SigningHelper.GetCngPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2)"> <summary> <para> The GetCngPrivateKey method will return a <see cref="T:System.Security.Cryptography.CngKey" /> representing the private key of an X.509 certificate which has its private key stored with NCrypt rather than with CAPI. If the key is not stored with NCrypt or if there is no private key available, GetCngPrivateKey returns null. </para> <para> The HasCngKey method can be used to test if the certificate does have its private key stored with NCrypt. </para> <para> The X509Certificate that is used to get the key must be kept alive for the lifetime of the CngKey that is returned - otherwise the handle may be cleaned up when the certificate is finalized. </para> </summary> <permission cref="T:System.Security.Permissions.SecurityPermission">The caller of this method must have SecurityPermission/UnmanagedCode.</permission> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SigningHelper.GetCertificateContext(System.Security.Cryptography.X509Certificates.X509Certificate)"> <summary> Get a <see cref="T:System.Security.Cryptography.X509Certificates.SafeCertContextHandle" /> for the X509 certificate. The caller of this method owns the returned safe handle, and should dispose of it when they no longer need it. This handle can be used independently of the lifetime of the original X509 certificate. </summary> <permission cref="T:System.Security.Permissions.SecurityPermission"> The immediate caller must have SecurityPermission/UnmanagedCode to use this method </permission> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWebUI.NavigationWaitMiliSecs"> <summary> This is how long we allow between completed navigations. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWebUI.NavigationOverallTimeout"> <summary> This is how long all redirect navigations are allowed to run for before a graceful termination of the entire browser based authentication process is attempted. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWebUI.WaitForCompletionOrTimeout(System.Threading.Thread)"> <summary> Waits on the UI Thread to complete normally for NavigationOverallTimeout. After it attempts shutdown the UI thread graceful followed by aborting the thread if a graceful shutdown is not successful. </summary> <param name="uiThread"></param> <returns>Returns true if the UI thread completed on its own before the timeout. Otherwise false.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWebUI.OnAuthenticate"> <summary> Callers expect the call to show the authentication dialog to be synchronous. This is easy in the interactive case as ShowDialog is a synchronous call. However, ShowDialog will always show the dialog. It can not be hidden. So it can not be used in the silent case. Instead we need to do the equivalent of creating our own modal dialog. We start a new thread, launch an invisible window on that thread. The original calling thread blocks until the secondary UI thread completes. </summary> <returns></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWindowsFormsAuthenticationDialog.SuppressBrowserSubDialogs"> <summary> Make sure that the browser control does not surface any of it's own dialogs. For instance bad certificate or javascript error dialogs. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SilentWindowsFormsAuthenticationDialog.SignalDone(System.Exception)"> <summary> This method must only be called from the UI thread. Since this is the callers opportunity to call dispose on this object. Calling Dispose must be done on the same thread on which this object was constructed. </summary> <param name="exception"></param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler"> <summary>Provides a scheduler that uses STA threads.</summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler._tasks"> <summary>Stores the queued tasks to be executed by our pool of STA threads.</summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler._threads"> <summary>The STA threads used by the scheduler.</summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.#ctor(System.Int32)"> <summary>Initializes a new instance of the StaTaskScheduler class with the specified concurrency level.</summary> <param name="numberOfThreads">The number of threads that should be created and used by this scheduler.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.QueueTask(System.Threading.Tasks.Task)"> <summary>Queues a Task to be executed by this scheduler.</summary> <param name="task">The task to be executed.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.GetScheduledTasks"> <summary>Provides a list of the scheduled tasks for the debugger to consume.</summary> <returns>An enumerable of all tasks currently scheduled.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task,System.Boolean)"> <summary>Determines whether a Task may be inlined.</summary> <param name="task">The task to be executed.</param> <param name="taskWasPreviouslyQueued">Whether the task was previously queued.</param> <returns>true if the task was successfully inlined; otherwise, false.</returns> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.MaximumConcurrencyLevel"> <summary>Gets the maximum concurrency level supported by this scheduler.</summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.StaTaskScheduler.Dispose"> <summary> Cleans up the scheduler by indicating that no more tasks will be queued. This method blocks until all threads successfully shutdown. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.StorageDelegates"> <summary> This class marked with ifdefs because only iOS/Android/WinRT provide platform default storage. Delegates have no implementation for netstandard1.1, netstandard1.3 and net45. Platform specific persistence logic is implemented in core. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.ICngAlgorithm.Provider"> <summary> Gets the algorithm or key storage provider being used for the implementation of the CNG algorithm. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.ICngAsymmetricAlgorithm"> <summary> Interface for asymmetric algorithms implemented over the CNG layer of Windows to provide CNG implementation details through. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.ICngAsymmetricAlgorithm.Key"> <summary> Get the CNG key being used by the asymmetric algorithm. </summary> <permission cref="T:System.Security.Permissions.SecurityPermission"> This method requires that the immediate caller have SecurityPermission/UnmanagedCode </permission> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptAlgorithmOperations"> <summary> Algorithm classes exposed by NCrypt </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative"> <summary> Native wrappers for ncrypt CNG APIs. The general pattern for this interop layer is that the NCryptNative type exports a wrapper method for consumers of the interop methods. This wrapper method puts a managed face on the raw P/Invokes, by translating from native structures to managed types and converting from error codes to exceptions. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.KeyPropertyName"> <summary> Well known key property names </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.NCryptAlgorithmClass"> <summary> NCrypt algorithm classes </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.ErrorCode"> <summary> Enum for some SECURITY_STATUS return codes </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.NCryptDecryptor`1"> <summary> Adapter to wrap specific NCryptDecrypt P/Invokes with specific padding info </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.NCryptEncryptor`1"> <summary> Adapter to wrap specific NCryptEncrypt P/Invokes with specific padding info </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.NCryptHashSigner`1"> <summary> Adapter to wrap specific NCryptSignHash P/Invokes with a specific padding info </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.SignHash``1(Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle,System.Byte[],``0@,Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode,Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.NCryptHashSigner{``0})"> <summary> Generic signature method, wrapped by signature calls for specific padding modes </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.SignHashPkcs1(Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle,System.Byte[],System.String)"> <summary> Sign a hash, using PKCS1 padding </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.NCryptNative.SignHashPss(Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle,System.Byte[],System.String,System.Int32)"> <summary> Sign a hash, using PSS padding </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeNCryptBuffer"> <summary> Handle for buffers that need to be released with NCryptFreeBuffer </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeNCryptBuffer.ReadArray``1(System.UInt32)"> <summary> Helper method to read a structure out of the buffer, treating it as if it were an array of T. This method does not do any validation that the read data is within the buffer itself. Esentially, this method treats the safe handle as if it were a native T[], and returns handle[index]. It will add enough padding space such that each T will begin on a pointer-sized location. </summary> <typeparam name="T">type of structure to read from the buffer</typeparam> <param name="index">0 based index into the array to read the structure from</param> <returns>the value of the structure at the index into the array</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng"> <summary> <para> The RSACng class provides a wrapper for the CNG implementation of the RSA algorithm. The interface provided by RSACng is derived from the <see cref="T:System.Security.Cryptography.RSA" /> base type, and not from the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> class. Consequently, it is not a drop in replacement for existing uses of RSACryptoServiceProvider. </para> <para> RSACng uses a programming model more similar to the <see cref="T:System.Security.Cryptography.ECDsaCng" /> class than RSACryptoServiceProvider. For instance, unlike RSACryptoServiceProvider which has a key directly tied into the operations of the type itself, the key used by RsaCng is managed by a separate <see cref="T:System.Security.Cryptography.CngKey" /> object. Additionally, operations such as signing and verifying signatures take their parameters from a set of properties set on the RSACng object, similar to how ECDsaCng uses properties of its object to control the signing and verification operations. </para> <para> RSACng uses the NCrypt layer of CNG to do its work, and requires Windows Vista and the .NET Framework 3.5. </para> <para> Example usage: <example> // Create an RSA-SHA256 signature using the key stored in "MyKey" byte[] dataToSign = Encoding.UTF8.GetBytes("Data to sign"); using (CngKey signingKey = CngKey.Open("MyKey"); using (RSACng rsa = new RSACng(signingKey)) { rsa.SignatureHashAlgorithm = CngAlgorithm.Sha256; return rsa.SignData(dataToSign); } </example> </para> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.#ctor"> <summary> Create an RSACng algorithm with a random 2048 bit key pair. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.#ctor(System.Int32)"> <summary> Creates a new RSACng object that will use a randomly generated key of the specified size. Valid key sizes range from 384 to 16384 bits, in increments of 8. It's suggested that a minimum size of 2048 bits be used for all keys. </summary> <param name="keySize">size of hte key to generate, in bits</param> <exception cref="T:System.Security.Cryptography.CryptographicException">if <paramref name="keySize" /> is not valid</exception> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.#ctor(System.Security.Cryptography.CngKey)"> <summary> Creates a new RSACng object that will use the specified key. The key's <see cref="P:System.Security.Cryptography.CngKey.AlgorithmGroup" /> must be Rsa. </summary> <param name="key">key to use for RSA operations</param> <exception cref="T:System.ArgumentException">if <paramref name="key" /> is not an RSA key</exception> <exception cref="T:System.ArgumentNullException">if <paramref name="key" /> is null</exception> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.EncryptionHashAlgorithm"> <summary> Sets the hash algorithm to use when encrypting or decrypting data using the OAEP padding method. This property is only used if data is encrypted or decrypted and the EncryptionPaddingMode is set to AsymmetricEncryptionPaddingMode.Oaep. The default value is Sha256. </summary> <exception cref="T:System.ArgumentNullException">if EncryptionHashAlgorithm is set to null</exception> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.EncryptionPaddingMode"> <summary> Sets the padding mode to use when encrypting or decrypting data. The default value is AsymmetricPaddingMode.Oaep. </summary> <exception cref="T:System.ArgumentNullException">if EncryptionPaddingMOde is set to null</exception> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.Key"> <summary> Gets the key that will be used by the RSA object for any cryptographic operation that it uses. This key object will be disposed if the key is reset, for instance by changing the KeySize property, using ImportParamers to create a new key, or by Disposing of the parent RSA object. Therefore, you should make sure that the key object is no longer used in these scenarios. This object will not be the same object as the CngKey passed to the RSACng constructor if that constructor was used, however it will point at the same CNG key. </summary> <permission cref="T:System.Security.Permissions.SecurityPermission"> SecurityPermission/UnmanagedCode is required to read this property. </permission> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.KeyHandle"> <summary> Helper property to get the NCrypt key handle </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.KeyExchangeAlgorithm"> <summary> Returns "RSA-PKCS1-KeyEx". This property should not be used. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.Provider"> <summary> Key storage provider being used for the algorithm </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignatureAlgorithm"> <summary> Returns "http://www.w3.org/2000/09/xmldsig#rsa-sha1". This property should not be used. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignatureHashAlgorithm"> <summary> Gets or sets the hash algorithm to use when signing or verifying data. The default value is Sha256. </summary> <exception cref="T:System.ArgumentNullException">if SignatureHashAlgorithm is set to null</exception> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignaturePaddingMode"> <summary> Gets or sets the padding mode to use when encrypting or decrypting data. The default value is AsymmetricPaddingMode.Pkcs1. </summary> <exception cref="T:System.ArgumentOutOfRangeException"> if SignaturePaddingMode is set to a mode other than Pkcs1 or Pss </exception> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignatureSaltBytes"> <summary> Gets or sets the number of bytes of salt to use when signing data or verifying a signature using the PSS padding mode. This property is only used if data is being signed or verified and the SignaturePaddingMode is set to AsymmetricEncryptionPaddingMode.Pss. The default value is 20 bytes. </summary> <exception cref="T:System.ArgumentOutOfRangeException"> if SignatureSaltBytes is set to a negative number </exception> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.Dispose(System.Boolean)"> <summary> Dispose implementation </summary> <param name="disposing"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.BuildKeyContainerPermission(System.Security.Cryptography.CngKey,System.Security.Permissions.KeyContainerPermissionFlags)"> <summary> Build a key container permission that should be demanded before using the private key </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.CreateSignatureHashObject"> <summary> Create an object to hash signature data with </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignData(System.Byte[])"> <summary> SignData signs the given data after hashing it with the SignatureHashAlgorithm algorithm. </summary> <param name="data">data to sign</param> <exception cref="T:System.ArgumentNullException">if <paramref name="data" /> is null</exception> <exception cref="T:System.Security.Cryptography.CryptographicException">if <paramref name="data" /> could not be signed</exception> <exception cref="T:System.InvalidOperationException"> if SignatureHashAlgorithm is not MD5, SHA-1, SHA-256, SHA-384, or SHA-512 </exception> <permission cref="T:System.Security.Permissions.KeyContainerPermission"> This method will demand KeyContainerPermission if the key being used is not ephemeral. </permission> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignData(System.Byte[],System.Int32,System.Int32)"> <summary> SignData signs the given data after hashing it with the SignatureHashAlgorithm algorithm. </summary> <param name="data">data to sign</param> <param name="offset">offset into the data that the signature should begin covering</param> <param name="count">number of bytes to include in the signed data</param> <exception cref="T:System.ArgumentNullException">if <paramref name="data" /> is null</exception> <exception cref="T:System.ArgumentOutOfRangeException"> if <paramref name="offset" /> or <paramref name="count" /> are negative, or if <paramref name="count" /> specifies more bytes than are available in <paramref name="data" />. </exception> <exception cref="T:System.Security.Cryptography.CryptographicException">if <paramref name="data" /> could not be signed</exception> <exception cref="T:System.InvalidOperationException"> if SignatureHashAlgorithm is not MD5, SHA-1, SHA-256, SHA-384, or SHA-512 </exception> <permission cref="T:System.Security.Permissions.KeyContainerPermission"> This method will demand KeyContainerPermission if the key being used is not ephemeral. </permission> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignHash(System.Byte[])"> <summary> Sign data which was hashed using the SignatureHashAlgorithm; if the algorithm used to hash the data was different, use the SignHash(byte[], CngAlgorithm) overload instead. </summary> <param name="hash">hash to sign</param> <exception cref="T:System.ArgumentNullException">if <paramref name="hash" /> is null</exception> <exception cref="T:System.Security.Cryptography.CryptographicException">if <paramref name="hash" /> could not be signed</exception> <exception cref="T:System.InvalidOperationException"> if SignatureHashAlgorithm is not MD5, SHA-1, SHA-256, SHA-384, or SHA-512 </exception> <permission cref="T:System.Security.Permissions.KeyContainerPermission"> This method will demand KeyContainerPermission if the key being used is not ephemeral. </permission> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.SignHash(System.Byte[],System.Security.Cryptography.CngAlgorithm)"> <summary> Sign already hashed data, specifying the algorithm it was hashed with. This method does not use the SignatureHashAlgorithm property. </summary> <param name="hash">hash to sign</param> <param name="hashAlgorithm">algorithm <paramref name="hash" /> was signed with</param> <exception cref="T:System.ArgumentNullException"> if <paramref name="hash" /> or <paramref name="hashAlgorithm"/> are null </exception> <exception cref="T:System.Security.Cryptography.CryptographicException">if <paramref name="hash" /> could not be signed</exception> <permission cref="T:System.Security.Permissions.KeyContainerPermission"> This method will demand KeyContainerPermission if the key being used is not ephemeral. </permission> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.DecryptValue(System.Byte[])"> <summary> </summary> <param name="rgb"></param> <returns></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.EncryptValue(System.Byte[])"> <summary> </summary> <param name="rgb"></param> <returns></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.ExportParameters(System.Boolean)"> <summary> </summary> <param name="includePrivateParameters"></param> <returns></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.RSACng.ImportParameters(System.Security.Cryptography.RSAParameters)"> <summary> </summary> <param name="parameters"></param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.Win32Native"> <summary> Native interop layer for Win32 APIs </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.Win32Native.FormatMessageFromLibrary(System.Int32,System.String)"> <summary> Lookup an error message in the message table of a specific library as well as the system message table. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.Win32Native.GetNTStatusMessage(System.Int32)"> <summary> Get an error message for an NTSTATUS error code </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeHandleWithBuffer"> <summary> Safe handle base class for safe handles which are associated with an additional data buffer that must be kept alive for the same amount of time as the handle itself. This is required rather than having a seperate safe handle own the key data buffer blob so that we can ensure that the key handle is disposed of before the key data buffer is freed. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeHandleWithBuffer.DataBuffer"> <summary> Buffer that holds onto the key data object. This data must be allocated with CoAllocTaskMem, or the ReleaseBuffer method must be overriden to match the deallocation function with the allocation function. Once the buffer is assigned into the DataBuffer property, the safe handle owns the buffer and users of this property should not attempt to free the memory. This property should be set only once, otherwise the first data buffer will leak. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeHandleWithBuffer.ReleaseBuffer"> <summary> Release the buffer associated with the handle </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeHandleWithBuffer.ReleaseNativeHandle"> <summary> Release just the native handle associated with the safe handle </summary> <returns></returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeLibraryHandle"> <summary> SafeHandle for a native HMODULE </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.SafeLocalAllocHandle"> <summary> SafeHandle for memory allocated with LocalAlloc </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.X509Native.AcquireCertificateKeyOptions"> <summary> Flags for the CryptAcquireCertificatePrivateKey API </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.X509Native.DuplicateCertContext(System.IntPtr)"> <summary> Duplicate the certificate context into a safe handle </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Native.X509Native.AcquireCngPrivateKey(Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Platform.SafeCertContextHandle)"> <summary> Get the private key of a certificate </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs"> <summary> Represents the event agruments received when web browser navigation fails. This class is public only for COM requirements, but should not be used by the developer. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs.#ctor(System.String,System.String,System.Int32,System.Object)"> <summary> Constructor </summary> <param name="url">url as a string, as in case of error it could be invalid url</param> <param name="targetFrameName">Name of the target frame that had the failure</param> <param name="statusCode">Error status code</param> <param name="webBrowserActiveXInstance">return object</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs.TargetFrameName"> <summary> Name of the target frame that had the failure </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs.Url"> <summary> url as a string, as in case of error it could be invalid url </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs.StatusCode"> <summary> ADAL.Native has code for interpretation of this code to string we don't do it here, as we need to come consideration should we do it or not. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs.WebBrowserActiveXInstance"> <summary> return object </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase"> <summary> Base class for web form </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.ownerWindow"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.#ctor(System.Object)"> <summary> </summary> <param name="ownerWindow"></param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.WebBrowser"> <summary> Gets Web Browser control used by the dialog. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.WebBrowserNavigatingHandler(System.Object,System.Windows.Forms.WebBrowserNavigatingEventArgs)"> <summary> </summary> <param name="sender"></param> <param name="e"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.WebBrowserNavigateErrorHandler(System.Object,Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WebBrowserNavigateErrorEventArgs)"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.OnClosingUrl"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.OnNavigationCanceled(System.Int32)"> <summary> </summary> <param name="statusCode"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.OnAuthenticate"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.InvokeHandlingOwnerWindow(System.Action)"> <summary> Some calls need to be made on the UI thread and this is the central place to check if we have an owner window and if so, ensure we invoke on that proper thread. </summary> <param name="action"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.Dispose(System.Boolean)"> <summary> </summary> <param name="disposing"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.CreateExceptionForAuthenticationUiFailed(System.Int32)"> <summary> </summary> <param name="statusCode"></param> <returns></returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.DpiHelper"> <summary> </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialogBase.DpiHelper.ZoomPercent"> <summary> </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog"> <summary> The browser dialog used for user authentication </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.#ctor(System.Object)"> <summary> Default constructor </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.OnAuthenticate"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.ShowBrowser"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.WebBrowserNavigatingHandler(System.Object,System.Windows.Forms.WebBrowserNavigatingEventArgs)"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.OnClosingUrl"> <summary> </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.WindowsFormsWebAuthenticationDialog.OnNavigationCanceled(System.Int32)"> <summary> </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException"> <summary> The exception type thrown when an error occurs during token acquisition. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.#ctor"> <summary> Initializes a new instance of the exception class. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.#ctor(System.String)"> <summary> Initializes a new instance of the exception class with a specified error code. </summary> <param name="errorCode">The error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the exception class with a specified error code and error message. </summary> <param name="errorCode">The error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="message">The error message that explains the reason for the exception.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the exception class with a specified error code and a reference to the inner exception that is the cause of this exception. </summary> <param name="errorCode">The error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified. It may especially contain the actual error message returned by the service.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.#ctor(System.String,System.String,System.Exception)"> <summary> Initializes a new instance of the exception class with a specified error code, error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="errorCode">The error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified. It may especially contain the actual error message returned by the service.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.ErrorCode"> <summary> Gets the protocol error code returned by the service or generated by client. This is the code you can rely on for exception handling. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.ToString"> <summary> Creates and returns a string representation of the current exception. </summary> <returns>A string representation of the current exception.</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.ToJsonString"> <summary> Allows serialization of most values of the exception into JSON. </summary> <returns></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException.FromJsonString(System.String)"> <summary> Allows re-hydration of the AdalException (or one of its derived types) from JSON generated by ToJsonString(). </summary> <param name="json"></param> <returns></returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalExceptionFactory"> <summary> Implementation of factory that throws <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalException"/> </summary> <remarks>Does not currently throw <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException"/> and <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException"/></remarks> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException"> <summary> The exception type thrown when the server returns an error. It's required to look at the internal details of the exception for a more information. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the exception class with a specified error code and error message. </summary> <param name="errorCode">The protocol error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="message">The error message that explains the reason for the exception.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the exception class with a specified error code and a reference to the inner exception that is the cause of this exception. </summary> <param name="errorCode">The protocol error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified. It may especially contain the actual error message returned by the service.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.#ctor(System.String,System.String,System.String[],Microsoft.Identity.Core.Http.IHttpWebResponse,System.Exception)"> <summary> Initializes a new instance of the exception class with a specified error code, error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="errorCode">The protocol error code returned by the service or generated by client. This is the code you can rely on for exception handling.</param> <param name="message">The error message that explains the reason for the exception.</param> <param name="serviceErrorCodes">The specific error codes that may be returned by the service.</param> <param name="response">The HttpResponse returned by the service.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified. It may especially contain the actual error message returned by the service.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.StatusCode"> <summary> Gets the status code returned from http layer. This status code is either the HttpStatusCode in the inner HttpRequestException response or NavigateError Event Status Code in browser based flow (See http://msdn.microsoft.com/en-us/library/bb268233(v=vs.85).aspx). You can use this code for purposes such as implementing retry logic or error investigation. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.ServiceErrorCodes"> <summary> Gets the specific error codes that may be returned by the service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.Headers"> <summary> Contains headers from the response that indicated an error </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.Response"> <summary> Contains the HttpResponse that indicated an error </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException.ToString"> <summary> Creates and returns a string representation of the current exception. </summary> <returns>A string representation of the current exception.</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException"> <summary> The exception type thrown when a token cannot be acquired silently. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException.#ctor"> <summary> Initializes a new instance of the exception class. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException.#ctor(System.Exception)"> <summary> </summary> <param name="innerException"></param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException"> <summary> The exception type thrown when user returned by service does not match user in the request. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the exception class. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException.RequestedUser"> <summary> Gets the user requested from service. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException.ReturnedUser"> <summary> Gets the user returned by service. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalUserMismatchException.ToString"> <summary> Creates and returns a string representation of the current exception. </summary> <returns>A string representation of the current exception.</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Extensibility.ICustomWebUi"> <summary> Interface that an ADAL.NET extender can implement to provide their own Web UI in public client applications to sign-in user and have them consented part of the Authorization code flow. ADAL.NET provides an embedded web view for Windows, but there are other scenarios not yet supported. This extensibility point enables them to provide such UI in a secure way </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.Extensibility.ICustomWebUi.AcquireAuthorizationCodeAsync(System.Uri,System.Uri)"> <summary> Method called by ADAL.NET to delegate the authentication code Web with with the STS </summary> <param name="authorizationUri"> URI computed by ADAL.NET that will let the UI extension navigate to the STS authorization endpoint in order to sign-in the user and have them consent </param> <param name="redirectUri"> The redirect Uri that was configured. The auth code will be appended to this redirect uri and the browser will redirect to it. </param> <returns> The URI returned back from the STS authorization endpoint. This URI contains a code=CODE parameters that ADAL.NET will extract and redeem. </returns> <remarks> The authorizationUri is crafted to leverage PKCE in order to protect the token from a man in the middle attack. Only MSAL.NET can redeem the code. In the event of cancellation, the implementer should return OperationCanceledException. </remarks> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel"> <summary> ADAL Log Levels </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel.Information"> <summary> Information log level </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel.Verbose"> <summary> Verbose log level </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel.Warning"> <summary> Warning log level </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel.Error"> <summary> Error log level </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.LogCallback"> <summary> Callback delegate that allows the developer to consume logs handle them in a custom manner. </summary> <param name="level">Log level of the message</param> <param name="message">Pre-formatted log message</param> <param name="containsPii">Indicates if the log message contains PII. If Logger.PiiLoggingEnabled is set to false then this value is always false.</param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.IAdalLogCallback"> <summary> Obsolete Callback for capturing ADAL logs to custom logging schemes. Will be called only if LogCallback delegate is not set and only for messages with no Pii </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.IAdalLogCallback.Log(Microsoft.IdentityModel.Clients.ActiveDirectory.LogLevel,System.String)"> <summary> Callback method to implement for custom logging </summary> <param name="level">Log level</param> <param name="message">message to be logged</param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler"> <summary> This class is responsible for managing the callback state and its execution. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler.PiiLoggingEnabled"> <summary> Flag to enable/disable logging of PII data. PII logs are never written to default outputs like Console, Logcat or NSLog. Default is set to false. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler.UseDefaultLogging"> <summary> Flag to control whether default logging should be performed in addition to calling the <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler.Callback"/> handler (if any) </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler.Callback"> <summary> Obsolete Callback implementation Will be called only if LogCallback is not set and only for messages with no Pii </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.LoggerCallbackHandler.LogCallback"> <summary> Instance of LogCallback delegate that can be provided by the developer to consume and publish logs in a custom manner. If set, Callback - instance of obsolete IAdalLogCallback will be ignored </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate"> <summary> Interface for implementing certificate based operations </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate.Sign(System.String)"> <summary> Signs a message using the private key in the certificate </summary> <param name="message">Message that needs to be signed</param> <returns>Signed message as a byte array</returns> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate.ClientId"> <summary> Gets the identifier of the client requesting the token. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.IClientAssertionCertificate.Thumbprint"> <summary> Thumbprint of the Certificate </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.IHttpClientFactory"> <summary> Factory responsible for creating HttpClient(s); .Net recommends to use a single instance of HttpClient </summary> <remarks> Implementations must be thread safe. Consider creating and configuring an HttpClient in the constructor of the factory, and returning the same object in <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.IHttpClientFactory.GetHttpClient"/> </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.IHttpClientFactory.GetHttpClient"> <summary> Method returning an Http client that will be used to communicate with Azure AD. This enables advanced scenarios. See https://aka.ms/adal-net-application-configuration </summary> <returns>An Http client</returns> <remarks>Implementations must be thread safe</remarks> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters"> <summary> Empty interface implemented in each supported platform. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ISecureClientSecret"> <summary> Interface to allow for client secret to be passed in as a SecureString </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ISecureClientSecret.ApplyTo(System.Collections.Generic.IDictionary{System.String,System.String})"> <summary> Writes SecureString to the dictionary. </summary> <param name="parameters"></param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache"> <summary> Token cache class used by <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext"/> to store access and refresh tokens. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.TokenCacheNotification"> <summary> Notification for certain token cache interactions during token acquisition. </summary> <param name="args">Arguments related to the cache item impacted</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.#ctor"> <summary> Default constructor. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.#ctor(System.Byte[])"> <summary> Constructor receiving state of the cache </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DefaultShared"> <summary> Static token cache shared by all instances of AuthenticationContext which do not explicitly pass a cache instance during construction. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.BeforeAccess"> <summary> Notification method called before any library method accesses the cache. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.BeforeWrite"> <summary> Notification method called before any library method writes to the cache. This notification can be used to reload the cache state from a row in database and lock that row. That database row can then be unlocked in <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.AfterAccess"/> notification. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.AfterAccess"> <summary> Notification method called after any library method accesses the cache. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.HasStateChanged"> <summary> Gets or sets the flag indicating whether cache state has changed. ADAL methods set this flag after any change. Caller application should reset the flag after serializing and persisting the state of the cache. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.Count"> <summary> Gets the number of items in the cache. </summary> <remarks>Does not trigger token cache notifications.</remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.Serialize"> <summary> Serializes current state of the cache as a blob. Caller application can persist the blob and update the state of the cache later by passing that blob back in constructor or by calling method Deserialize. </summary> <returns>Current state of the Adal V3+ cache as a blob</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalV3"> <summary> Serializes current state of the cache as a blob. Caller application can persist the blob and update the state of the cache later by passing that blob back in constructor or by calling method Deserialize. </summary> <remarks>This should always be used in an app that references ADAL v3 or later</remarks> <returns>Current state of the Adal V3+ cache as a blob</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalAndUnifiedCache"> <summary> Serializes current state of the cache as a blob. Caller application can persist the blob and update the state of the cache later by passing that blob back in constructor or by calling method Deserialize. </summary> <returns>Serialized token cache <see cref="T:Microsoft.Identity.Core.Cache.CacheData"/></returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.Deserialize(System.Byte[])"> <summary> Deserializes state of the cache. The state should be the blob received earlier by calling the method Serialize. </summary> <param name="adalState">State of the cache in Adal V3+ format as a blob</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalV3(System.Byte[])"> <summary> Deserializes state of the cache. The state should be the blob received earlier by calling the method Serialize. </summary> <remarks>This should always be used in an app that references ADAL v3 or later</remarks> <param name="adalState">State of the cache in Adal V3+ format as a blob</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV2"> <summary> Serializes parts of the token cache to the MSAL.NET 2.x unified cache format. If you need to maintain SSO between an application using ADAL 3.x or later and MSAL 2.x, use both <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalV3"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalV3(System.Byte[])"/> and <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV2"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV2(System.Byte[])"/>. </summary> <remarks> An application using ADAL should not rely exclusively on SerializeMsal* / DeserializeMsal* because access tokens and ID tokens will be lost, as they are not compatible between ADAL and MSAL. This will cause ADAL to contact AAD for an access token on every AcquireTokenSilent call, introducing seconds of delay into your app. </remarks> <returns>Byte stream representation of the cache</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV2(System.Byte[])"> <summary> Deserializes parts of the token cache to the MSAL.NET 2.x cache format, which is compatible with ADAL.NET v4 and other MSAL.NET v2 applications. If you need to maintain SSO between an application using ADAL 3.x or MSAL 2.x, use both <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalV3"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalV3(System.Byte[])"/> and <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV2"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV2(System.Byte[])"/>. </summary> <param name="bytes">Byte stream representation of the cache</param> <remarks> An application using ADAL should not rely exclusively on SerializeMsal* / DeserializeMsal* because access tokens and ID tokens will be lost, as they are not compatible between ADAL and MSAL. This will cause ADAL to contact AAD for an access token on every AcquireTokenSilent call, introducing seconds of delay into your app. </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV3"> <summary> Serializes parts of the token cache to the MSAL.NET 3.x cache format, which is compatible with other MSAL desktop libraries, e.g. MSAL for Python and MSAL for Java. If you need to maintain SSO between an application using ADAL 3.x or later and MSAL 3.x use both <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalV3"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalV3(System.Byte[])"/> and <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV3"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV3(System.Byte[])"/>. </summary> <returns>Byte stream representation of the cache</returns> <remarks> An application using ADAL should not rely exclusively on SerializeMsal* / DeserializeMsal* because access tokens and ID tokens will be lost, as they are not compatible between ADAL and MSAL. This will cause ADAL to contact AAD for an access token on every AcquireTokenSilent call, introducing seconds of delay into your app. </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV3(System.Byte[])"> <summary> Deserializes the token cache to the MSAL.NET 3.x cache format, which is compatible with other MSAL desktop libraries, e.g. MSAL for Python and MSAL for Java. If you need to maintain SSO between an application using ADAL 3.x or later and MSAL 3.x use both <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeAdalV3"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalV3(System.Byte[])"/> and <see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.SerializeMsalV2"/>/<see cref="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeMsalV2(System.Byte[])"/>. </summary> <param name="bytes">Byte stream representation of the cache</param> <remarks> An application using ADAL should not rely exclusively on SerializeMsal* / DeserializeMsal* because access tokens and ID tokens will be lost, as they are not compatible between ADAL and MSAL. This will cause ADAL to contact AAD for an access token on every AcquireTokenSilent call, introducing seconds of delay into your app. </remarks> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeserializeAdalAndUnifiedCache(Microsoft.Identity.Core.Cache.CacheData)"> <summary> Deserializes state of the cache. The state should be the blob received earlier by calling the method Serialize. </summary> <param name="cacheData">Serialized token cache <see cref="T:Microsoft.Identity.Core.Cache.CacheData"></see></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.ReadItems"> <summary> Reads a copy of the list of all items in the cache. </summary> <returns>The items in the cache</returns> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.DeleteItem(Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem)"> <summary> Deletes an item from the cache. </summary> <param name="item">The item to delete from the cache</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.Clear"> <summary> Clears the cache by deleting all the items. Note that if the cache is the default shared cache, clearing it would impact all the instances of <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext"/> which share that cache. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache.QueryCache(System.String,System.String,Microsoft.Identity.Core.Cache.TokenSubjectType,System.String,System.String,System.String)"> <summary> Queries all values in the cache that meet the passed in values, plus the authority value that this AuthorizationContext was created with. In every case passing null results in a wildcard evaluation. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem"> <summary> Token cache item </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.#ctor(Microsoft.Identity.Core.Cache.AdalTokenCacheKey,Microsoft.Identity.Core.Cache.AdalResult)"> <summary> Default constructor. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.Authority"> <summary> Gets the Authority. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.ClientId"> <summary> Gets the ClientId. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.ExpiresOn"> <summary> Gets the Expiration. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.FamilyName"> <summary> Gets the FamilyName. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.GivenName"> <summary> Gets the GivenName. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.IdentityProvider"> <summary> Gets the IdentityProviderName. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.Resource"> <summary> Gets the Resource. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.TenantId"> <summary> Gets the TenantId. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.UniqueId"> <summary> Gets the user's unique Id. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.DisplayableId"> <summary> Gets the user's displayable Id. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.AccessToken"> <summary> Gets the Access Token requested. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheItem.IdToken"> <summary> Gets the entire Id Token if returned by the service or null if no Id Token is returned. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs"> <summary> Contains parameters used by the ADAL call accessing the cache. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs.TokenCache"> <summary> Gets the TokenCache </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs.ClientId"> <summary> Gets the ClientId. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs.Resource"> <summary> Gets the Resource. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs.UniqueId"> <summary> Gets the user's unique Id. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCacheNotificationArgs.DisplayableId"> <summary> Gets the user's displayable Id. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion"> <summary> Credential type containing an assertion representing user credential. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.#ctor(System.String)"> <summary> Constructor to create the object with an assertion. This constructor can be used for On Behalf Of flow which assumes the assertion is a JWT token. For other flows, the other construction with assertionType must be used. </summary> <param name="assertion">Assertion representing the user.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.#ctor(System.String,System.String)"> <summary> Constructor to create credential with assertion and assertionType </summary> <param name="assertion">Assertion representing the user.</param> <param name="assertionType">Type of the assertion representing the user.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.#ctor(System.String,System.String,System.String)"> <summary> Constructor to create credential with assertion, assertionType and username </summary> <param name="assertion">Assertion representing the user.</param> <param name="assertionType">Type of the assertion representing the user.</param> <param name="userName">Identity of the user token is requested for. This parameter can be null.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.Assertion"> <summary> Gets the assertion. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.AssertionType"> <summary> Gets the assertion type. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserAssertion.UserName"> <summary> Gets name of the user. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential"> <summary> Credential used for integrated authentication on domain-joined machines. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential.#ctor"> <summary> Constructor to create user credential. Using this constructor would imply integrated authentication with logged in user and it can only be used in domain joined scenarios. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential.#ctor(System.String)"> <summary> Constructor to create credential with username </summary> <param name="userName">Identifier of the user application requests token on behalf.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential.UserName"> <summary> Gets identifier of the user. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifierType"> <summary> Indicates the type of <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifierType.UniqueId"> <summary> When a <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> of this type is passed in a token acquisition operation, the operation is guaranteed to return a token issued for the user with corresponding <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.UniqueId"/> or fail. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifierType.OptionalDisplayableId"> <summary> When a <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> of this type is passed in a token acquisition operation, the operation restricts cache matches to the value provided and injects it as a hint in the authentication experience. However the end user could overwrite that value, resulting in a token issued to a different account than the one specified in the <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> in input. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifierType.RequiredDisplayableId"> <summary> When a <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> of this type is passed in a token acquisition operation, the operation is guaranteed to return a token issued for the user with corresponding <see cref="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.DisplayableId"/> (UPN or email) or fail </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"> <summary> Contains identifier for a user. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.#ctor(System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifierType)"> <summary> </summary> <param name="id"></param> <param name="type"></param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.Type"> <summary> Gets type of the <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.Id"> <summary> Gets Id of the <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/>. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier.AnyUser"> <summary> Gets an static instance of <see cref="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier"/> to represent any user. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo"> <summary> Contains information of a single user. This information is used for token cache lookup. Also if created with userId, userId is sent to the service when login_hint is accepted. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.#ctor"> <summary> Create user information for token cache lookup </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.#ctor(Microsoft.Identity.Core.Cache.AdalUserInfo)"> <summary> Create user information for token cache lookup </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.#ctor(Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo)"> <summary> Create user information copied from another UserInfo object </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.UniqueId"> <summary> Gets identifier of the user authenticated during token acquisition. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.DisplayableId"> <summary> Gets a displayable value in UserPrincipalName (UPN) format. The value can be null. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.GivenName"> <summary> Gets given name of the user if provided by the service. If not, the value is null. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.FamilyName"> <summary> Gets family name of the user if provided by the service. If not, the value is null. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.PasswordExpiresOn"> <summary> Gets the time when the password expires. Default value is 0. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.PasswordChangeUrl"> <summary> Gets the url where the user can change the expiring password. The value can be null. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.UserInfo.IdentityProvider"> <summary> Gets identity provider if returned by the service. If not, the value is null. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode"> <summary> Padding modes </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode.None"> <summary> No padding </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode.Pkcs1"> <summary> PKCS #1 padding </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode.Oaep"> <summary> Optimal Asymmetric Encryption Padding </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.AsymmetricPaddingMode.Pss"> <summary> Probabilistic Signature Scheme padding </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative"> <summary> Native wrappers for bcrypt CNG APIs. The general pattern for this interop layer is that the BCryptNative type exports a wrapper method for consumers of the interop methods. This wrapper method puts a managed face on the raw P/Invokes, by translating from native structures to managed types and converting from error codes to exceptions. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.AlgorithmName"> <summary> Well known algorithm names </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.AlgorithmProviderOptions"> <summary> Flags for BCryptOpenAlgorithmProvider </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.AuthenticatedCipherModeInfoFlags"> <summary> Flags for use with the BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO structure </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.ChainingMode"> <summary> Well known chaining modes </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.ErrorCode"> <summary> Result codes from BCrypt APIs </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.KeyBlobMagicNumber"> <summary> Magic numbers for different key blobs </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.KeyBlobType"> <summary> Well known key blob tyes </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.ParameterTypes"> <summary> BCrypt parameter types (used in parameter lists) </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.BCryptNative.ProviderName"> <summary> Well known BCrypt provider names </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.SafeBCryptAlgorithmHandle"> <summary> SafeHandle for a native BCRYPT_ALG_HANDLE </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.SafeBCryptHashHandle"> <summary> SafeHandle for a BCRYPT_HASH_HANDLE. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.Native.SafeBCryptKeyHandle"> <summary> SafeHandle for a native BCRYPT_KEY_HANDLE. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters"> <summary> Additional parameters used in acquiring user's authorization </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.#ctor(Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior)"> <summary> </summary> <param name="promptBehavior"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.#ctor(Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior,System.Object)"> <summary> </summary> <param name="promptBehavior"></param> <param name="ownerWindow"></param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.#ctor(Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior,Microsoft.IdentityModel.Clients.ActiveDirectory.Extensibility.ICustomWebUi)"> <summary> Constructor that allows extends to configure their own web ui. </summary> <param name="promptBehavior">Controls the prompt that is displayed on web ui. Default is <see cref="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.SelectAccount"/>.</param> <param name="customWebUi">Custom implementation of the web ui</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.OwnerWindow"> <summary> Gets the owner of the browser dialog which pops up for receiving user credentials. It can be null. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.PromptBehavior"> <summary> Gets prompt behavior. If <see cref="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.Always"/>, asks service to show user the authentication page which gives them chance to authenticate as a different user. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters.CustomWebUi"> <summary> Extension method enabling ADAK.NET extenders for public client applications to set a custom web ui that will let the user sign-in with Azure AD, present consent if needed, and get back the authorization code. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.SecureClientSecret"> <summary> This class allows to pass client secret as a SecureString to the API. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.SecureClientSecret.#ctor(System.Security.SecureString)"> <summary> Required Constructor </summary> <param name="secret">SecureString secret. Required and cannot be null.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.SecureClientSecret.ApplyTo(System.Collections.Generic.IDictionary{System.String,System.String})"> <summary> Applies the secret to the dictionary. </summary> <param name="parameters">Dictionary to which the securestring is applied to be sent to server</param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.UserPasswordCredential"> <summary> Credential used for username/password authentication. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserPasswordCredential.#ctor(System.String,System.String)"> <summary> Constructor to create credential with username and password </summary> <param name="userName">Identifier of the user application requests token on behalf.</param> <param name="password">User password.</param> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.UserPasswordCredential.#ctor(System.String,System.Security.SecureString)"> <summary> Constructor to create credential with username and password </summary> <param name="userName">Identifier of the user application requests token on behalf.</param> <param name="securePassword">User password.</param> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalOption"> <summary> Helper class to get ADAL EventSource </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.AdalOption.AdalEventSource"> <summary> Returns ADAL EventSource </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContextIntegratedAuthExtensions"> <summary> Extension class to support username/password flow. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContextIntegratedAuthExtensions.AcquireTokenAsync(Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext,System.String,System.String,Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential)"> <summary> Acquires security token from the authority. </summary> <remarks>This feature is supported only for Azure Active Directory and Active Directory Federation Services (ADFS) on Windows 10.</remarks> <param name="ctx">Authentication context instance</param> <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param> <param name="clientId">Identifier of the client requesting the token.</param> <param name="userCredential">The user credential to use for token acquisition.</param> <returns>It contains Access Token, its expiration time, user information.</returns> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior"> <summary> Indicates whether AcquireToken should automatically prompt only if necessary or whether it should prompt regardless of whether there is a cached token. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.Auto"> <summary> Acquire token will prompt the user for credentials only when necessary. If a token that meets the requirements is already cached then the user will not be prompted. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.Always"> <summary> The user will be prompted for credentials even if there is a token that meets the requirements already in the cache. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.Never"> <summary> The user will not be prompted for credentials. If prompting is necessary then the AcquireToken request will fail. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.RefreshSession"> <summary> Re-authorizes (through displaying webview) the resource usage, making sure that the resulting access token contains updated claims. If user logon cookies are available, the user will not be asked for credentials again and the logon dialog will dismiss automatically. </summary> </member> <member name="F:Microsoft.IdentityModel.Clients.ActiveDirectory.PromptBehavior.SelectAccount"> <summary> Prompt the user to select a user account even if there is a token that meets the requirements already in the cache. This enables an user who has multiple accounts at the Authorization Server to select amongst the multiple accounts that they might have current sessions for. </summary> </member> <member name="T:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate"> <summary> Containing certificate used to create client assertion. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.#ctor(System.String,System.Security.Cryptography.X509Certificates.X509Certificate2)"> <summary> Constructor to create credential with client Id and certificate. </summary> <param name="clientId">Identifier of the client requesting the token.</param> <param name="certificate">The certificate used as credential.</param> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.ClientId"> <summary> Gets the identifier of the client requesting the token. </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.MinKeySizeInBits"> <summary> Gets minimum X509 certificate key size in bits </summary> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.Certificate"> <summary> Gets the certificate used as credential. </summary> </member> <member name="M:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.Sign(System.String)"> <summary> Signs a message using the private key in the certificate </summary> <param name="message">Message that needs to be signed</param> <returns>Signed message as a byte array</returns> </member> <member name="P:Microsoft.IdentityModel.Clients.ActiveDirectory.ClientAssertionCertificate.Thumbprint"> <summary> Returns thumbprint of the certificate </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.AdalResult"> <summary> Contains the results of one token acquisition operation. </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalResult.#ctor(System.String,System.String,System.DateTimeOffset)"> <summary> Creates result returned from AcquireToken. Except in advanced scenarios related to token caching, you do not need to create any instance of AuthenticationResult. </summary> <param name="accessTokenType">Type of the Access Token returned</param> <param name="accessToken">The Access Token requested</param> <param name="expiresOn">The point in time in which the Access Token returned in the AccessToken property ceases to be valid</param> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalResult.#ctor(System.String,System.String,System.DateTimeOffset,System.DateTimeOffset)"> <summary> Creates result returned from AcquireToken. Except in advanced scenarios related to token caching, you do not need to create any instance of AuthenticationResult. </summary> <param name="accessTokenType">Type of the Access Token returned</param> <param name="accessToken">The Access Token requested</param> <param name="expiresOn">The point in time in which the Access Token returned in the AccessToken property ceases to be valid</param> <param name="extendedExpiresOn">The point in time in which the Access Token returned in the AccessToken property ceases to be valid</param> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.AccessTokenType"> <summary> Gets the type of the Access Token returned. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.AccessToken"> <summary> Gets the Access Token requested. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.ExpiresOn"> <summary> Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid. This value is calculated based on current UTC time measured locally and the value expiresIn received from the service. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.ExtendedExpiresOn"> <summary> Gets the point in time in which the Access Token returned in the AccessToken property ceases to be valid in ADAL's extended LifeTime. This value is calculated based on current UTC time measured locally and the value ext_expiresIn received from the service. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.ExtendedLifeTimeToken"> <summary> Gives information to the developer whether token returned is during normal or extended lifetime. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.TenantId"> <summary> Gets an identifier for the tenant the token was acquired from. This property will be null if tenant information is not returned by the service. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.UserInfo"> <summary> Gets user information including user Id. Some elements in UserInfo might be null if not returned by the service. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.IdToken"> <summary> Gets the entire Id Token if returned by the service or null if no Id Token is returned. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResult.Authority"> <summary> Gets the authority that has issued the token. </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalResult.CreateAuthorizationHeader"> <summary> Creates authorization header from authentication result. </summary> <returns>Created authorization header</returns> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResultWrapper.RefreshToken"> <summary> Gets the Refresh Token associated with the requested Access Token. Note: not all operations will return a Refresh Token. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalResultWrapper.IsMultipleResourceRefreshToken"> <summary> Gets a value indicating whether the refresh token can be used for requesting access token for other resources. </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalResultWrapper.Deserialize(System.String)"> <summary> Serializes the object to a JSON string </summary> <returns>Deserialized authentication result</returns> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalResultWrapper.Serialize"> <summary> Serializes the object to a JSON string </summary> <returns>Serialized authentication result</returns> </member> <member name="T:Microsoft.Identity.Core.Cache.TokenSubjectType"> <summary> Determines what type of subject the token was issued for. </summary> </member> <member name="F:Microsoft.Identity.Core.Cache.TokenSubjectType.User"> <summary> User </summary> </member> <member name="F:Microsoft.Identity.Core.Cache.TokenSubjectType.Client"> <summary> Client </summary> </member> <member name="F:Microsoft.Identity.Core.Cache.TokenSubjectType.UserPlusClient"> <summary> UserPlusClient: This is for confidential clients used in middle tier. </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.AdalTokenCacheKey"> <summary> <see cref="T:Microsoft.Identity.Core.Cache.AdalTokenCacheKey"/> can be used with Linq to access items from the TokenCache dictionary. </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalTokenCacheKey.Equals(System.Object)"> <summary> Determines whether the specified object is equal to the current object. </summary> <returns> true if the specified object is equal to the current object; otherwise, false. </returns> <param name="obj">The object to compare with the current object. </param><filterpriority>2</filterpriority> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalTokenCacheKey.Equals(Microsoft.Identity.Core.Cache.AdalTokenCacheKey)"> <summary> Determines whether the specified TokenCacheKey is equal to the current object. </summary> <returns> true if the specified TokenCacheKey is equal to the current object; otherwise, false. </returns> <param name="other">The TokenCacheKey to compare with the current object. </param><filterpriority>2</filterpriority> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalTokenCacheKey.GetHashCode"> <summary> Returns the hash code for this TokenCacheKey. </summary> <returns> A 32-bit signed integer hash code. </returns> </member> <member name="T:Microsoft.Identity.Core.Cache.AdalUserInfo"> <summary> Contains information of a single user. This information is used for token cache lookup. Also if created with userId, userId is sent to the service when login_hint is accepted. </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalUserInfo.#ctor"> <summary> Create user information for token cache lookup </summary> </member> <member name="M:Microsoft.Identity.Core.Cache.AdalUserInfo.#ctor(Microsoft.Identity.Core.Cache.AdalUserInfo)"> <summary> Create user information copied from another UserInfo object </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.UniqueId"> <summary> Gets identifier of the user authenticated during token acquisition. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.DisplayableId"> <summary> Gets a displayable value in UserPrincipalName (UPN) format. The value can be null. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.GivenName"> <summary> Gets given name of the user if provided by the service. If not, the value is null. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.FamilyName"> <summary> Gets family name of the user if provided by the service. If not, the value is null. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.PasswordExpiresOn"> <summary> Gets the time when the password expires. Default value is 0. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.PasswordChangeUrl"> <summary> Gets the url where the user can change the expiring password. The value can be null. </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.AdalUserInfo.IdentityProvider"> <summary> Gets identity provider if returned by the service. If not, the value is null. </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.CacheData"> <summary> Data class, common to ADAL.NET and MSAL.NET used for the token cache serialization in a dual format: the ADAL V3 cache format, and the new unified cache format, common to ADAL.NET 4.x, MSAL.NET 2.x and other libraries in the same Operating System (for instance ADAL and MSAL for objective C in iOS) </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.CacheData.AdalV3State"> <summary> Array of bytes containing the serialized cache in ADAL.NET V3 format </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.CacheData.UnifiedState"> <summary> Array of bytes containing the serialized Unified cache </summary> </member> <member name="P:Microsoft.Identity.Core.Cache.MsalAccessTokenCacheItem.NormalizedScopes"> <summary> String comprised of scopes that have been lowercased and ordered. </summary> <remarks>Normalization is important when creating unique keys.</remarks> </member> <member name="T:Microsoft.Identity.Core.Cache.MsalAccessTokenCacheKey"> <summary> An object representing the key of the token cache AT dictionary. The format of the key is not important for this library, as long as it is unique. </summary> <remarks>The format of the key is platform dependent</remarks> </member> <member name="M:Microsoft.Identity.Core.Cache.MsalAccessTokenCacheKey.GetUWPFixedSizeKey"> <summary> Gets a key that is smaller than 255 characters, which is a limitation for UWP storage. This is done by hashing the scopes and env. </summary> <remarks> accountId - two guids plus separator - 73 chars "accesstoken" string - 11 chars env - ussually loging.microsoft.net - 20 chars clientid - a guid - 36 chars tenantid - a guid - 36 chars scopes - a sha256 string - 44 chars delimiters - 4 chars total: 224 chars </remarks> </member> <member name="T:Microsoft.Identity.Core.Cache.MsalAccountCacheKey"> <summary> An object representing the key of the token cache Account dictionary. The format of the key is not important for this library, as long as it is unique. </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.MsalIdTokenCacheKey"> <summary> An object representing the key of the token cache Id Token dictionary. The format of the key is not important for this library, as long as it is unique. </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.MsalRefreshTokenCacheKey"> <summary> An object representing the key of the token cache RT dictionary. The format of the key is not important for this library, as long as it is unique. </summary> </member> <member name="T:Microsoft.Identity.Core.Cache.TokenCacheDictionarySerializer"> <summary> The dictionary serializer does not handle UnkownNodes </summary> </member> <member name="T:Microsoft.Identity.Core.ErrorCodes"> <summary> Error codes attached to each exception. These need to be duplicated and publicly exposed in the MSAL and ADAL because users refer to them </summary> </member> <member name="F:Microsoft.Identity.Core.ErrorCodes.MissingFederationMetadataUrl"> <summary> Federation Metadata Url is missing for federated user. </summary> </member> <member name="F:Microsoft.Identity.Core.ErrorCodes.DefaultRedirectUriIsInvalid"> <summary> RedirectUri validation failed. </summary> </member> <member name="P:Microsoft.Identity.Core.ExceptionDetail.StatusCode"> <summary> Gets the status code returned from http layer. This status code is either the HttpStatusCode in the inner HttpRequestException response or NavigateError Event Status Code in browser based flow (See http://msdn.microsoft.com/en-us/library/bb268233(v=vs.85).aspx). You can use this code for purposes such as implementing retry logic or error investigation. </summary> </member> <member name="P:Microsoft.Identity.Core.ExceptionDetail.ServiceErrorCodes"> <summary> The specific error codes that may be returned by the service. </summary> </member> <member name="P:Microsoft.Identity.Core.ExceptionDetail.ResponseBody"> <summary> Raw response body received from the server. </summary> </member> <member name="M:Microsoft.Identity.Core.Helpers.StringExtensions.ToByteArray(System.String)"> <summary> Create an array of bytes representing the UTF-8 encoding of the given string. </summary> <param name="stringInput">String to get UTF-8 bytes for</param> <returns>Array of UTF-8 character bytes</returns> </member> <member name="T:Microsoft.Identity.Core.Http.HttpManager"> <remarks> We invoke this class from different threads and they all use the same HttpClient. To prevent race conditions, make sure you do not get / set anything on HttpClient itself, instead rely on HttpRequest objects which are thread specific. In particular, do not change any properties on HttpClient such as BaseAddress, buffer sizes and Timeout. You should also not access DefaultRequestHeaders because the getters are not thread safe (use HttpRequestMessage.Headers instead). </remarks> </member> <member name="M:Microsoft.Identity.Core.Http.HttpManager.SendPostForceResponseAsync(System.Uri,System.Collections.Generic.Dictionary{System.String,System.String},System.Net.Http.StringContent,Microsoft.Identity.Core.RequestContext)"> <summary> Performs the POST request just like <see cref="M:Microsoft.Identity.Core.Http.HttpManager.SendPostAsync(System.Uri,System.Collections.Generic.IDictionary{System.String,System.String},System.Net.Http.HttpContent,Microsoft.Identity.Core.RequestContext)"/> but does not throw a ServiceUnavailable service exception. Instead, it returns the <see cref="T:Microsoft.Identity.Core.Http.IHttpWebResponse"/> associated with the request. </summary> </member> <member name="M:Microsoft.Identity.Core.Http.RedirectUriHelper.Validate(System.Uri)"> <summary> Check common redirect uri problems. </summary> </member> <member name="T:Microsoft.Identity.Core.IPlatformProxy"> <summary> Common operations for extracting platform / operating system specifics </summary> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetDeviceModel"> <summary> Gets the device model. On some TFMs this is not returned for security reasonons. </summary> <returns>device model or null</returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetUserPrincipalNameAsync"> <summary> Gets the upn of the user currently logged into the OS </summary> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.IsDomainJoined"> <summary> Returns true if the current OS logged in user is AD or AAD joined. </summary> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetCallingApplicationName"> <summary> Returns the name of the calling assembly </summary> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetCallingApplicationVersion"> <summary> Returns the version of the calling assembly </summary> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetDeviceId"> <summary> Returns a device identifier. Varies by platform. </summary> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetBrokerOrRedirectUri(System.Uri)"> <summary> Get the redirect Uri as string, or the a broker specified value </summary> </member> <member name="M:Microsoft.Identity.Core.IPlatformProxy.GetDefaultRedirectUri(System.String)"> <summary> Gets the default redirect uri for the platform, which sometimes includes the clientId </summary> </member> <member name="F:Microsoft.Identity.Core.MsalIdParameter.Product"> <summary> MSAL Flavor: .NET or WinRT </summary> </member> <member name="F:Microsoft.Identity.Core.MsalIdParameter.Version"> <summary> MSAL assembly version </summary> </member> <member name="F:Microsoft.Identity.Core.MsalIdParameter.CpuPlatform"> <summary> CPU platform with x86, x64 or ARM as value </summary> </member> <member name="F:Microsoft.Identity.Core.MsalIdParameter.OS"> <summary> Version of the operating system. This will not be sent on WinRT </summary> </member> <member name="F:Microsoft.Identity.Core.MsalIdParameter.DeviceModel"> <summary> Device model. This will not be sent on .NET </summary> </member> <member name="T:Microsoft.Identity.Core.MsalIdHelper"> <summary> This class adds additional query parameters or headers to the requests sent to STS. This can help us in collecting statistics and potentially on diagnostics. </summary> </member> <member name="T:Microsoft.Identity.Core.PlatformProxyFactory"> <summary> Returns the platform / os specific implementation of a PlatformProxy. </summary> </member> <member name="M:Microsoft.Identity.Core.PlatformProxyFactory.GetPlatformProxy"> <summary> Gets the platform proxy, which can be used to perform platform specific operations </summary> </member> <member name="P:Microsoft.Identity.Core.ServiceBundle.HttpManager"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.ServiceBundle.WsTrustWebRequestManager"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.ServiceBundle.PlatformProxy"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.ServiceBundle.InstanceDiscovery"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.UI.AuthorizationResult.State"> <summary> A string that is added to each Authroization Request and is expected to be sent back along with the authorization code. MSAL is responsible for validating that the state sent is identical to the state received. </summary> <remarks> This is in addition to PKCE, which is validated by the server to ensure that the system redeeming the auth code is the same as the system who asked for it. It protects against XSRF https://openid.net/specs/openid-connect-core-1_0.html </remarks> </member> <member name="M:Microsoft.Identity.Core.UI.CoreUIParent.#ctor(System.Object)"> <summary> Initializes an instance for a provided parent window. </summary> <param name="ownerWindow">Parent window object reference. OPTIONAL.</param> </member> <member name="M:Microsoft.Identity.Core.UI.CustomWebUiHandler.AcquireAuthorizationAsync(System.Uri,System.Uri,Microsoft.Identity.Core.RequestContext)"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.UI.CustomWebUiHandler.ValidateRedirectUri(System.Uri)"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.UI.IWebUI.ValidateRedirectUri(System.Uri)"> <summary> Extra validations on the redirect uri, for example system web views cannot work with the urn:oob... uri because there is no way of knowing which app to get back to. Throws if uri is invalid </summary> </member> <member name="M:Microsoft.Identity.Core.WsTrust.CommonNonInteractiveHandler.GetPlatformUserAsync"> <summary> Gets the currently logged in user. Works for Windows when user is AD or AAD joined. Throws otherwise if cannot be found. </summary> </member> <member name="T:Microsoft.Identity.Core.WsTrust.IWsTrustWebRequestManager"> <summary> </summary> </member> <member name="M:Microsoft.Identity.Core.WsTrust.IWsTrustWebRequestManager.GetMexDocumentAsync(System.String,Microsoft.Identity.Core.RequestContext)"> <summary> </summary> <param name="federationMetadataUrl"></param> <param name="requestContext"></param> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.WsTrust.IWsTrustWebRequestManager.GetWsTrustResponseAsync(Microsoft.Identity.Core.WsTrust.WsTrustEndpoint,System.String,Microsoft.Identity.Core.RequestContext)"> <summary> </summary> <param name="wsTrustEndpoint"></param> <param name="wsTrustRequest"></param> <param name="requestContext"></param> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.WsTrust.IWsTrustWebRequestManager.GetUserRealmAsync(System.String,System.String,Microsoft.Identity.Core.RequestContext)"> <summary> </summary> <param name="userRealmUriPrefix"></param> <param name="userName"></param> <param name="requestContext"></param> <returns></returns> </member> <member name="M:Microsoft.Identity.Core.WsTrust.WsTrustWebRequestManager.GetMexDocumentAsync(System.String,Microsoft.Identity.Core.RequestContext)"> <inheritdoc/> </member> <member name="M:Microsoft.Identity.Core.WsTrust.WsTrustWebRequestManager.GetWsTrustResponseAsync(Microsoft.Identity.Core.WsTrust.WsTrustEndpoint,System.String,Microsoft.Identity.Core.RequestContext)"> <inheritdoc/> </member> <member name="T:Microsoft.Identity.Core.IntegratedWindowsAuthInput"> <summary> Integrated Windows Authentication request data object. Used in the IWA workflow. </summary> </member> <member name="P:Microsoft.Identity.Core.IntegratedWindowsAuthInput.UserName"> <summary> Gets identifier of the user. </summary> </member> <member name="T:Microsoft.Identity.Core.NetDesktopPlatformProxy"> <summary> Platform / OS specific logic. </summary> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetUserPrincipalNameAsync"> <summary> Get the user logged in to Windows or throws </summary> <returns>Upn or throws</returns> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetBrokerOrRedirectUri(System.Uri)"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetDefaultRedirectUri(System.String)"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetProductName"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetCallingApplicationName"> <summary> Considered PII, ensure that it is hashed. </summary> <returns>Name of the calling application</returns> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetCallingApplicationVersion"> <summary> Considered PII, ensure that it is hashed. </summary> <returns>Device identifier</returns> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.GetDeviceId"> <summary> Considered PII, ensure that it is hashed. </summary> <returns>Device identifier</returns> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.CreateLegacyCachePersistence"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.NetDesktopPlatformProxy.CreateTokenCacheAccessor"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.NetDesktopPlatformProxy.CryptographyManager"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.TokenCacheAccessor.RefreshTokenCount"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.TokenCacheAccessor.AccessTokenCount"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.TokenCacheAccessor.AccountCount"> <inheritdoc /> </member> <member name="P:Microsoft.Identity.Core.TokenCacheAccessor.IdTokenCount"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.TokenCacheAccessor.ClearRefreshTokens"> <inheritdoc /> </member> <member name="M:Microsoft.Identity.Core.TokenCacheAccessor.ClearAccessTokens"> <inheritdoc /> </member> <member name="T:Microsoft.Identity.Json.Bson.BsonObjectId"> <summary> Represents a BSON Oid (object id). </summary> </member> <member name="P:Microsoft.Identity.Json.Bson.BsonObjectId.Value"> <summary> Gets or sets the value of the Oid. </summary> <value>The value of the Oid.</value> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonObjectId.#ctor(System.Byte[])"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonObjectId"/> class. </summary> <param name="value">The Oid value.</param> </member> <member name="T:Microsoft.Identity.Json.Bson.BsonReader"> <summary> Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data. </summary> </member> <member name="P:Microsoft.Identity.Json.Bson.BsonReader.JsonNet35BinaryCompatibility"> <summary> Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary. </summary> <value> <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>. </value> </member> <member name="P:Microsoft.Identity.Json.Bson.BsonReader.ReadRootValueAsArray"> <summary> Gets or sets a value indicating whether the root object will be read as a JSON array. </summary> <value> <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>. </value> </member> <member name="P:Microsoft.Identity.Json.Bson.BsonReader.DateTimeKindHandling"> <summary> Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON. </summary> <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonReader"/> class. </summary> <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonReader"/> class. </summary> <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonReader"/> class. </summary> <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param> <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonReader"/> class. </summary> <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param> <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.Read"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>. </summary> <returns> <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read. </returns> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonReader.Close"> <summary> Changes the reader's state to <see cref="F:Microsoft.Identity.Json.JsonReader.State.Closed"/>. If <see cref="P:Microsoft.Identity.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed. </summary> </member> <member name="T:Microsoft.Identity.Json.Bson.BsonWriter"> <summary> Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data. </summary> </member> <member name="P:Microsoft.Identity.Json.Bson.BsonWriter.DateTimeKindHandling"> <summary> Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON. When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur. </summary> <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonWriter"/> class. </summary> <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Bson.BsonWriter"/> class. </summary> <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.Flush"> <summary> Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteEnd(Microsoft.Identity.Json.JsonToken)"> <summary> Writes the end. </summary> <param name="token">The token.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteComment(System.String)"> <summary> Writes a comment <c>/*...*/</c> containing the specified text. </summary> <param name="text">Text to place inside the comment.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteStartConstructor(System.String)"> <summary> Writes the start of a constructor with the given name. </summary> <param name="name">The name of the constructor.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteRaw(System.String)"> <summary> Writes raw JSON. </summary> <param name="json">The raw JSON to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteRawValue(System.String)"> <summary> Writes raw JSON where a value is expected and updates the writer's state. </summary> <param name="json">The raw JSON to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteStartArray"> <summary> Writes the beginning of a JSON array. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteStartObject"> <summary> Writes the beginning of a JSON object. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WritePropertyName(System.String)"> <summary> Writes the property name of a name/value pair on a JSON object. </summary> <param name="name">The name of the property.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.Close"> <summary> Closes this writer. If <see cref="P:Microsoft.Identity.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed. If <see cref="P:Microsoft.Identity.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Object)"> <summary> Writes a <see cref="T:System.Object"/> value. An error will raised if the value cannot be written as a single JSON token. </summary> <param name="value">The <see cref="T:System.Object"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteNull"> <summary> Writes a null value. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteUndefined"> <summary> Writes an undefined value. </summary> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.String)"> <summary> Writes a <see cref="T:System.String"/> value. </summary> <param name="value">The <see cref="T:System.String"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Int32)"> <summary> Writes a <see cref="T:System.Int32"/> value. </summary> <param name="value">The <see cref="T:System.Int32"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.UInt32)"> <summary> Writes a <see cref="T:System.UInt32"/> value. </summary> <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Int64)"> <summary> Writes a <see cref="T:System.Int64"/> value. </summary> <param name="value">The <see cref="T:System.Int64"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.UInt64)"> <summary> Writes a <see cref="T:System.UInt64"/> value. </summary> <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Single)"> <summary> Writes a <see cref="T:System.Single"/> value. </summary> <param name="value">The <see cref="T:System.Single"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Double)"> <summary> Writes a <see cref="T:System.Double"/> value. </summary> <param name="value">The <see cref="T:System.Double"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Boolean)"> <summary> Writes a <see cref="T:System.Boolean"/> value. </summary> <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Int16)"> <summary> Writes a <see cref="T:System.Int16"/> value. </summary> <param name="value">The <see cref="T:System.Int16"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.UInt16)"> <summary> Writes a <see cref="T:System.UInt16"/> value. </summary> <param name="value">The <see cref="T:System.UInt16"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Char)"> <summary> Writes a <see cref="T:System.Char"/> value. </summary> <param name="value">The <see cref="T:System.Char"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Byte)"> <summary> Writes a <see cref="T:System.Byte"/> value. </summary> <param name="value">The <see cref="T:System.Byte"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.SByte)"> <summary> Writes a <see cref="T:System.SByte"/> value. </summary> <param name="value">The <see cref="T:System.SByte"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Decimal)"> <summary> Writes a <see cref="T:System.Decimal"/> value. </summary> <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.DateTime)"> <summary> Writes a <see cref="T:System.DateTime"/> value. </summary> <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)"> <summary> Writes a <see cref="T:System.DateTimeOffset"/> value. </summary> <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Byte[])"> <summary> Writes a <see cref="T:System.Byte"/>[] value. </summary> <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Guid)"> <summary> Writes a <see cref="T:System.Guid"/> value. </summary> <param name="value">The <see cref="T:System.Guid"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)"> <summary> Writes a <see cref="T:System.TimeSpan"/> value. </summary> <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteValue(System.Uri)"> <summary> Writes a <see cref="T:System.Uri"/> value. </summary> <param name="value">The <see cref="T:System.Uri"/> value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])"> <summary> Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id. </summary> <param name="value">The Object ID value to write.</param> </member> <member name="M:Microsoft.Identity.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)"> <summary> Writes a BSON regex. </summary> <param name="pattern">The regex pattern.</param> <param name="options">The regex options.</param> </member> <member name="T:Microsoft.Identity.Json.ConstructorHandling"> <summary> Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.ConstructorHandling.Default"> <summary> First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor. </summary> </member> <member name="F:Microsoft.Identity.Json.ConstructorHandling.AllowNonPublicDefaultConstructor"> <summary> Json.NET will use a non-public default constructor before falling back to a parameterized constructor. </summary> </member> <member name="T:Microsoft.Identity.Json.Converters.BinaryConverter"> <summary> Converts a binary value to and from a base 64 string value. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.BinaryConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.BinaryConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.BinaryConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.BsonObjectIdConverter"> <summary> Converts a <see cref="T:Microsoft.Identity.Json.Bson.BsonObjectId"/> to and from JSON and BSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.BsonObjectIdConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.BsonObjectIdConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.CustomCreationConverter`1"> <summary> Creates a custom object. </summary> <typeparam name="T">The object type to convert.</typeparam> </member> <member name="M:Microsoft.Identity.Json.Converters.CustomCreationConverter`1.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.CustomCreationConverter`1.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.CustomCreationConverter`1.Create(System.Type)"> <summary> Creates an object which will then be populated by the serializer. </summary> <param name="objectType">Type of the object.</param> <returns>The created object.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="P:Microsoft.Identity.Json.Converters.CustomCreationConverter`1.CanWrite"> <summary> Gets a value indicating whether this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON. </summary> <value> <c>true</c> if this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>. </value> </member> <member name="T:Microsoft.Identity.Json.Converters.DataSetConverter"> <summary> Converts a <see cref="T:System.Data.DataSet"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.DataSetConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.DataSetConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.DataSetConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified value type. </summary> <param name="valueType">Type of the value.</param> <returns> <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.DataTableConverter"> <summary> Converts a <see cref="T:System.Data.DataTable"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.DataTableConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.DataTableConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.DataTableConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified value type. </summary> <param name="valueType">Type of the value.</param> <returns> <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.DateTimeConverterBase"> <summary> Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.DiscriminatedUnionConverter"> <summary> Converts a F# discriminated union type to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.DiscriminatedUnionConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.DiscriminatedUnionConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.EntityKeyMemberConverter"> <summary> Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.EntityKeyMemberConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.EntityKeyMemberConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.ExpandoObjectConverter"> <summary> Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.ExpandoObjectConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.ExpandoObjectConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="P:Microsoft.Identity.Json.Converters.ExpandoObjectConverter.CanWrite"> <summary> Gets a value indicating whether this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON. </summary> <value> <c>true</c> if this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>. </value> </member> <member name="T:Microsoft.Identity.Json.Converters.IsoDateTimeConverter"> <summary> Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>). </summary> </member> <member name="P:Microsoft.Identity.Json.Converters.IsoDateTimeConverter.DateTimeStyles"> <summary> Gets or sets the date time styles used when converting a date to and from JSON. </summary> <value>The date time styles used when converting a date to and from JSON.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.IsoDateTimeConverter.DateTimeFormat"> <summary> Gets or sets the date time format used when converting a date to and from JSON. </summary> <value>The date time format used when converting a date to and from JSON.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.IsoDateTimeConverter.Culture"> <summary> Gets or sets the culture used when converting a date to and from JSON. </summary> <value>The culture used when converting a date to and from JSON.</value> </member> <member name="M:Microsoft.Identity.Json.Converters.IsoDateTimeConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.IsoDateTimeConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="T:Microsoft.Identity.Json.Converters.JavaScriptDateTimeConverter"> <summary> Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>). </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing property value of the JSON that is being converted.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="T:Microsoft.Identity.Json.Converters.KeyValuePairConverter"> <summary> Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.KeyValuePairConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.KeyValuePairConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.RegexConverter"> <summary> Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.RegexConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.RegexConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.RegexConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.StringEnumConverter"> <summary> Converts an <see cref="T:System.Enum"/> to and from its name string value. </summary> </member> <member name="P:Microsoft.Identity.Json.Converters.StringEnumConverter.CamelCaseText"> <summary> Gets or sets a value indicating whether the written enum text should be camel case. The default value is <c>false</c>. </summary> <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.StringEnumConverter.NamingStrategy"> <summary> Gets or sets the naming strategy used to resolve how enum text is written. </summary> <value>The naming strategy used to resolve how enum text is written.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.StringEnumConverter.AllowIntegerValues"> <summary> Gets or sets a value indicating whether integer values are allowed when serializing and deserializing. The default value is <c>true</c>. </summary> <value><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</value> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor(Microsoft.Identity.Json.Serialization.NamingStrategy,System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> <param name="namingStrategy">The naming strategy used to resolve how enum text is written.</param> <param name="allowIntegerValues"><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> used to write enum text.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor(System.Type,System.Object[])"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> used to write enum text.</param> <param name="namingStrategyParameters"> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> described by <paramref name="namingStrategyType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> that exactly matches the number, order, and type of these parameters. </param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.#ctor(System.Type,System.Object[],System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.Converters.StringEnumConverter"/> class. </summary> <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> used to write enum text.</param> <param name="namingStrategyParameters"> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> described by <paramref name="namingStrategyType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> that exactly matches the number, order, and type of these parameters. </param> <param name="allowIntegerValues"><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.StringEnumConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.UnixDateTimeConverter"> <summary> Converts a <see cref="T:System.DateTime"/> to and from Unix epoch time </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.UnixDateTimeConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.UnixDateTimeConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing property value of the JSON that is being converted.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="T:Microsoft.Identity.Json.Converters.VersionConverter"> <summary> Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>). </summary> </member> <member name="M:Microsoft.Identity.Json.Converters.VersionConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.VersionConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing property value of the JSON that is being converted.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.VersionConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.Converters.XmlNodeConverter"> <summary> Converts XML to and from JSON. </summary> </member> <member name="P:Microsoft.Identity.Json.Converters.XmlNodeConverter.DeserializeRootElementName"> <summary> Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements. </summary> <value>The name of the deserialized root element.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.XmlNodeConverter.WriteArrayAttribute"> <summary> Gets or sets a value to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. </summary> <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.XmlNodeConverter.OmitRootObject"> <summary> Gets or sets a value indicating whether to write the root JSON object. </summary> <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value> </member> <member name="P:Microsoft.Identity.Json.Converters.XmlNodeConverter.EncodeSpecialCharacters"> <summary> Gets or sets a value indicating whether to encode special characters when converting JSON to XML. If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify XML namespaces, attributes or processing directives. Instead special characters are encoded and written as part of the XML element name. </summary> <value><c>true</c> if special characters are encoded; otherwise, <c>false</c>.</value> </member> <member name="M:Microsoft.Identity.Json.Converters.XmlNodeConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="serializer">The calling serializer.</param> <param name="value">The value.</param> </member> <member name="M:Microsoft.Identity.Json.Converters.XmlNodeConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)"> <summary> Checks if the <paramref name="attributeName"/> is a namespace attribute. </summary> <param name="attributeName">Attribute name to test.</param> <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param> <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns> </member> <member name="M:Microsoft.Identity.Json.Converters.XmlNodeConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified value type. </summary> <param name="valueType">Type of the value.</param> <returns> <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.DateFormatHandling"> <summary> Specifies how dates are formatted when writing JSON text. </summary> </member> <member name="F:Microsoft.Identity.Json.DateFormatHandling.IsoDateFormat"> <summary> Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>. </summary> </member> <member name="F:Microsoft.Identity.Json.DateFormatHandling.MicrosoftDateFormat"> <summary> Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>. </summary> </member> <member name="T:Microsoft.Identity.Json.DateParseHandling"> <summary> Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text. </summary> </member> <member name="F:Microsoft.Identity.Json.DateParseHandling.None"> <summary> Date formatted strings are not parsed to a date type and are read as strings. </summary> </member> <member name="F:Microsoft.Identity.Json.DateParseHandling.DateTime"> <summary> Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Microsoft.Identity.Json.DateParseHandling.DateTime"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.DateParseHandling.DateTimeOffset"> <summary> Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Microsoft.Identity.Json.DateParseHandling.DateTimeOffset"/>. </summary> </member> <member name="T:Microsoft.Identity.Json.DateTimeZoneHandling"> <summary> Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.DateTimeZoneHandling.Local"> <summary> Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time. </summary> </member> <member name="F:Microsoft.Identity.Json.DateTimeZoneHandling.Utc"> <summary> Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC. </summary> </member> <member name="F:Microsoft.Identity.Json.DateTimeZoneHandling.Unspecified"> <summary> Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string. If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified. </summary> </member> <member name="F:Microsoft.Identity.Json.DateTimeZoneHandling.RoundtripKind"> <summary> Time zone information should be preserved when converting. </summary> </member> <member name="T:Microsoft.Identity.Json.DefaultJsonNameTable"> <summary> The default JSON name table implementation. </summary> </member> <member name="M:Microsoft.Identity.Json.DefaultJsonNameTable.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.DefaultJsonNameTable"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.DefaultJsonNameTable.Get(System.Char[],System.Int32,System.Int32)"> <summary> Gets the string containing the same characters as the specified range of characters in the given array. </summary> <param name="key">The character array containing the name to find.</param> <param name="start">The zero-based index into the array specifying the first character of the name.</param> <param name="length">The number of characters in the name.</param> </member> <member name="M:Microsoft.Identity.Json.DefaultJsonNameTable.Add(System.String)"> <summary> Adds the specified string into name table. </summary> <param name="key">The string to add.</param> <remarks>This method is not thread-safe.</remarks> </member> <member name="T:Microsoft.Identity.Json.DefaultValueHandling"> <summary> Specifies default value handling options for the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/>. </summary> <example> <code lang="cs" source="..\Src\Microsoft.Identity.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" /> <code lang="cs" source="..\Src\Microsoft.Identity.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" /> </example> </member> <member name="F:Microsoft.Identity.Json.DefaultValueHandling.Include"> <summary> Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. </summary> </member> <member name="F:Microsoft.Identity.Json.DefaultValueHandling.Ignore"> <summary> Ignore members where the member value is the same as the member's default value when serializing objects so that it is not written to JSON. This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers, decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property. </summary> </member> <member name="F:Microsoft.Identity.Json.DefaultValueHandling.Populate"> <summary> Members with a default value but no JSON will be set to their default value when deserializing. </summary> </member> <member name="F:Microsoft.Identity.Json.DefaultValueHandling.IgnoreAndPopulate"> <summary> Ignore members where the member value is the same as the member's default value when serializing objects and set members to their default value when deserializing. </summary> </member> <member name="T:Microsoft.Identity.Json.FloatFormatHandling"> <summary> Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Microsoft.Identity.Json.JsonWriter"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.FloatFormatHandling.String"> <summary> Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>. </summary> </member> <member name="F:Microsoft.Identity.Json.FloatFormatHandling.Symbol"> <summary> Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>. Note that this will produce non-valid JSON. </summary> </member> <member name="F:Microsoft.Identity.Json.FloatFormatHandling.DefaultValue"> <summary> Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, <c>null</c> for a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> property. </summary> </member> <member name="T:Microsoft.Identity.Json.FloatParseHandling"> <summary> Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. </summary> </member> <member name="F:Microsoft.Identity.Json.FloatParseHandling.Double"> <summary> Floating point numbers are parsed to <see cref="F:Microsoft.Identity.Json.FloatParseHandling.Double"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.FloatParseHandling.Decimal"> <summary> Floating point numbers are parsed to <see cref="F:Microsoft.Identity.Json.FloatParseHandling.Decimal"/>. </summary> </member> <member name="T:Microsoft.Identity.Json.Formatting"> <summary> Specifies formatting options for the <see cref="T:Microsoft.Identity.Json.JsonTextWriter"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.Formatting.None"> <summary> No special formatting is applied. This is the default. </summary> </member> <member name="F:Microsoft.Identity.Json.Formatting.Indented"> <summary> Causes child objects to be indented according to the <see cref="P:Microsoft.Identity.Json.JsonTextWriter.Indentation"/> and <see cref="P:Microsoft.Identity.Json.JsonTextWriter.IndentChar"/> settings. </summary> </member> <member name="T:Microsoft.Identity.Json.IArrayPool`1"> <summary> Provides an interface for using pooled arrays. </summary> <typeparam name="T">The array type content.</typeparam> </member> <member name="M:Microsoft.Identity.Json.IArrayPool`1.Rent(System.Int32)"> <summary> Rent an array from the pool. This array must be returned when it is no longer needed. </summary> <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param> <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns> </member> <member name="M:Microsoft.Identity.Json.IArrayPool`1.Return(`0[])"> <summary> Return an array to the pool. </summary> <param name="array">The array that is being returned.</param> </member> <member name="T:Microsoft.Identity.Json.IJsonLineInfo"> <summary> Provides an interface to enable a class to return line and position information. </summary> </member> <member name="M:Microsoft.Identity.Json.IJsonLineInfo.HasLineInfo"> <summary> Gets a value indicating whether the class can return line information. </summary> <returns> <c>true</c> if <see cref="P:Microsoft.Identity.Json.IJsonLineInfo.LineNumber"/> and <see cref="P:Microsoft.Identity.Json.IJsonLineInfo.LinePosition"/> can be provided; otherwise, <c>false</c>. </returns> </member> <member name="P:Microsoft.Identity.Json.IJsonLineInfo.LineNumber"> <summary> Gets the current line number. </summary> <value>The current line number or 0 if no line information is available (for example, when <see cref="M:Microsoft.Identity.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value> </member> <member name="P:Microsoft.Identity.Json.IJsonLineInfo.LinePosition"> <summary> Gets the current line position. </summary> <value>The current line position or 0 if no line information is available (for example, when <see cref="M:Microsoft.Identity.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value> </member> <member name="T:Microsoft.Identity.Json.JsonArrayAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> how to serialize the collection. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonArrayAttribute.AllowNullItems"> <summary> Gets or sets a value indicating whether null items are allowed in the collection. </summary> <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value> </member> <member name="M:Microsoft.Identity.Json.JsonArrayAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonArrayAttribute"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonArrayAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items. </summary> <param name="allowNullItems">A flag indicating whether the array can contain null items.</param> </member> <member name="M:Microsoft.Identity.Json.JsonArrayAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonArrayAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Microsoft.Identity.Json.JsonConstructorAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> to use the specified constructor when deserializing that object. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonContainerAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> how to serialize the object. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.Id"> <summary> Gets or sets the id. </summary> <value>The id.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.Title"> <summary> Gets or sets the title. </summary> <value>The title.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.Description"> <summary> Gets or sets the description. </summary> <value>The description.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemConverterType"> <summary> Gets or sets the collection's items converter. </summary> <value>The collection's items converter.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemConverterParameters"> <summary> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> described by <see cref="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemConverterType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> that exactly matches the number, order, and type of these parameters. </summary> <example> <code> [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] </code> </example> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.NamingStrategyType"> <summary> Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/>. </summary> <value>The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/>.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.NamingStrategyParameters"> <summary> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> described by <see cref="P:Microsoft.Identity.Json.JsonContainerAttribute.NamingStrategyType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> that exactly matches the number, order, and type of these parameters. </summary> <example> <code> [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] </code> </example> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.IsReference"> <summary> Gets or sets a value that indicates whether to preserve object references. </summary> <value> <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>. </value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemIsReference"> <summary> Gets or sets a value that indicates whether to preserve collection's items references. </summary> <value> <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>. </value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemReferenceLoopHandling"> <summary> Gets or sets the reference loop handling used when serializing the collection's items. </summary> <value>The reference loop handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonContainerAttribute.ItemTypeNameHandling"> <summary> Gets or sets the type name handling used when serializing the collection's items. </summary> <value>The type name handling.</value> </member> <member name="M:Microsoft.Identity.Json.JsonContainerAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonContainerAttribute"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonContainerAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonContainerAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Microsoft.Identity.Json.JsonConvert"> <summary> Provides methods for converting between .NET types and JSON types. </summary> <example> <code lang="cs" source="..\Src\Microsoft.Identity.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" /> </example> </member> <member name="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"> <summary> Gets or sets a function that creates default <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. Default settings are automatically used by serialization methods on <see cref="T:Microsoft.Identity.Json.JsonConvert"/>, and <see cref="M:Microsoft.Identity.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Microsoft.Identity.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Microsoft.Identity.Json.Linq.JToken"/>. To serialize without using any default settings create a <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> with <see cref="M:Microsoft.Identity.Json.JsonSerializer.Create"/>. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.True"> <summary> Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.False"> <summary> Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.Null"> <summary> Represents JavaScript's <c>null</c> as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.Undefined"> <summary> Represents JavaScript's <c>undefined</c> as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.PositiveInfinity"> <summary> Represents JavaScript's positive infinity as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.NegativeInfinity"> <summary> Represents JavaScript's negative infinity as a string. This field is read-only. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonConvert.NaN"> <summary> Represents JavaScript's <c>NaN</c> as a string. This field is read-only. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.DateTime)"> <summary> Converts the <see cref="T:System.DateTime"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.DateTime,Microsoft.Identity.Json.DateFormatHandling,Microsoft.Identity.Json.DateTimeZoneHandling)"> <summary> Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Microsoft.Identity.Json.DateFormatHandling"/> specified. </summary> <param name="value">The value to convert.</param> <param name="format">The format the date will be converted to.</param> <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param> <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.DateTimeOffset)"> <summary> Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.DateTimeOffset,Microsoft.Identity.Json.DateFormatHandling)"> <summary> Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Microsoft.Identity.Json.DateFormatHandling"/> specified. </summary> <param name="value">The value to convert.</param> <param name="format">The format the date will be converted to.</param> <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Boolean)"> <summary> Converts the <see cref="T:System.Boolean"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Char)"> <summary> Converts the <see cref="T:System.Char"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Enum)"> <summary> Converts the <see cref="T:System.Enum"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Int32)"> <summary> Converts the <see cref="T:System.Int32"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Int16)"> <summary> Converts the <see cref="T:System.Int16"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.UInt16)"> <summary> Converts the <see cref="T:System.UInt16"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.UInt32)"> <summary> Converts the <see cref="T:System.UInt32"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Int64)"> <summary> Converts the <see cref="T:System.Int64"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.UInt64)"> <summary> Converts the <see cref="T:System.UInt64"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Single)"> <summary> Converts the <see cref="T:System.Single"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Double)"> <summary> Converts the <see cref="T:System.Double"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Byte)"> <summary> Converts the <see cref="T:System.Byte"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.SByte)"> <summary> Converts the <see cref="T:System.SByte"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Decimal)"> <summary> Converts the <see cref="T:System.Decimal"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Guid)"> <summary> Converts the <see cref="T:System.Guid"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.TimeSpan)"> <summary> Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Uri)"> <summary> Converts the <see cref="T:System.Uri"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.String)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.String,System.Char)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <param name="delimiter">The string delimiter character.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.String,System.Char,Microsoft.Identity.Json.StringEscapeHandling)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <param name="delimiter">The string delimiter character.</param> <param name="stringEscapeHandling">The string escape handling.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.ToString(System.Object)"> <summary> Converts the <see cref="T:System.Object"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object)"> <summary> Serializes the specified object to a JSON string. </summary> <param name="value">The object to serialize.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,Microsoft.Identity.Json.Formatting)"> <summary> Serializes the specified object to a JSON string using formatting. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,Microsoft.Identity.Json.JsonConverter[])"> <summary> Serializes the specified object to a JSON string using a collection of <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> <param name="value">The object to serialize.</param> <param name="converters">A collection of converters used while serializing.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,Microsoft.Identity.Json.Formatting,Microsoft.Identity.Json.JsonConverter[])"> <summary> Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <param name="converters">A collection of converters used while serializing.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="settings">The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to serialize the object. If this is <c>null</c>, default serialization settings will be used.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,System.Type,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="settings">The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to serialize the object. If this is <c>null</c>, default serialization settings will be used.</param> <param name="type"> The type of the value being serialized. This parameter is used when <see cref="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Microsoft.Identity.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match. Specifying the type is optional. </param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,Microsoft.Identity.Json.Formatting,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using formatting and <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <param name="settings">The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to serialize the object. If this is <c>null</c>, default serialization settings will be used.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeObject(System.Object,System.Type,Microsoft.Identity.Json.Formatting,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <param name="settings">The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to serialize the object. If this is <c>null</c>, default serialization settings will be used.</param> <param name="type"> The type of the value being serialized. This parameter is used when <see cref="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Microsoft.Identity.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match. Specifying the type is optional. </param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject(System.String)"> <summary> Deserializes the JSON to a .NET object. </summary> <param name="value">The JSON to deserialize.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject(System.String,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to a .NET object using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="settings"> The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to deserialize the object. If this is <c>null</c>, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject(System.String,System.Type)"> <summary> Deserializes the JSON to the specified .NET type. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject``1(System.String)"> <summary> Deserializes the JSON to the specified .NET type. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)"> <summary> Deserializes the JSON to the given anonymous type. </summary> <typeparam name="T"> The anonymous type to deserialize to. This can't be specified traditionally and must be inferred from the anonymous type passed as a parameter. </typeparam> <param name="value">The JSON to deserialize.</param> <param name="anonymousTypeObject">The anonymous type object.</param> <returns>The deserialized anonymous type from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the given anonymous type using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <typeparam name="T"> The anonymous type to deserialize to. This can't be specified traditionally and must be inferred from the anonymous type passed as a parameter. </typeparam> <param name="value">The JSON to deserialize.</param> <param name="anonymousTypeObject">The anonymous type object.</param> <param name="settings"> The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to deserialize the object. If this is <c>null</c>, default serialization settings will be used. </param> <returns>The deserialized anonymous type from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject``1(System.String,Microsoft.Identity.Json.JsonConverter[])"> <summary> Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <param name="converters">Converters to use while deserializing.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject``1(System.String,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the specified .NET type using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The object to deserialize.</param> <param name="settings"> The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to deserialize the object. If this is <c>null</c>, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject(System.String,System.Type,Microsoft.Identity.Json.JsonConverter[])"> <summary> Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The type of the object to deserialize.</param> <param name="converters">Converters to use while deserializing.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeObject(System.String,System.Type,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the specified .NET type using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The type of the object to deserialize to.</param> <param name="settings"> The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to deserialize the object. If this is <c>null</c>, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.PopulateObject(System.String,System.Object)"> <summary> Populates the object with values from the JSON string. </summary> <param name="value">The JSON to populate values from.</param> <param name="target">The target object to populate values onto.</param> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.PopulateObject(System.String,System.Object,Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Populates the object with values from the JSON string using <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="value">The JSON to populate values from.</param> <param name="target">The target object to populate values onto.</param> <param name="settings"> The <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> used to deserialize the object. If this is <c>null</c>, default serialization settings will be used. </param> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)"> <summary> Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string. </summary> <param name="node">The node to serialize.</param> <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Microsoft.Identity.Json.Formatting)"> <summary> Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting. </summary> <param name="node">The node to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Microsoft.Identity.Json.Formatting,System.Boolean)"> <summary> Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>. </summary> <param name="node">The node to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <param name="omitRootObject">Omits writing the root object.</param> <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXmlNode(System.String)"> <summary> Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string. </summary> <param name="value">The JSON string.</param> <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)"> <summary> Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)"> <summary> Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/> and writes a Json.NET array attribute for collections. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <param name="writeArrayAttribute"> A value to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. </param> <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean,System.Boolean)"> <summary> Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>, writes a Json.NET array attribute for collections, and encodes special characters. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <param name="writeArrayAttribute"> A value to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. </param> <param name="encodeSpecialCharacters"> A value to indicate whether to encode special characters when converting JSON to XML. If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify XML namespaces, attributes or processing directives. Instead special characters are encoded and written as part of the XML element name. </param> <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)"> <summary> Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string. </summary> <param name="node">The node to convert to JSON.</param> <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Microsoft.Identity.Json.Formatting)"> <summary> Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting. </summary> <param name="node">The node to convert to JSON.</param> <param name="formatting">Indicates how the output should be formatted.</param> <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Microsoft.Identity.Json.Formatting,System.Boolean)"> <summary> Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>. </summary> <param name="node">The node to serialize.</param> <param name="formatting">Indicates how the output should be formatted.</param> <param name="omitRootObject">Omits writing the root object.</param> <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXNode(System.String)"> <summary> Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string. </summary> <param name="value">The JSON string.</param> <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXNode(System.String,System.String)"> <summary> Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)"> <summary> Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/> and writes a Json.NET array attribute for collections. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <param name="writeArrayAttribute"> A value to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. </param> <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean,System.Boolean)"> <summary> Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>, writes a Json.NET array attribute for collections, and encodes special characters. </summary> <param name="value">The JSON string.</param> <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> <param name="writeArrayAttribute"> A value to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. </param> <param name="encodeSpecialCharacters"> A value to indicate whether to encode special characters when converting JSON to XML. If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify XML namespaces, attributes or processing directives. Instead special characters are encoded and written as part of the XML element name. </param> <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns> </member> <member name="T:Microsoft.Identity.Json.JsonConverter"> <summary> Converts an object to and from JSON. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonConverter.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.JsonConverter.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConverter.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="P:Microsoft.Identity.Json.JsonConverter.CanRead"> <summary> Gets a value indicating whether this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can read JSON. </summary> <value><c>true</c> if this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value> </member> <member name="P:Microsoft.Identity.Json.JsonConverter.CanWrite"> <summary> Gets a value indicating whether this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON. </summary> <value><c>true</c> if this <see cref="T:Microsoft.Identity.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value> </member> <member name="T:Microsoft.Identity.Json.JsonConverter`1"> <summary> Converts an object to and from JSON. </summary> <typeparam name="T">The object type to convert.</typeparam> </member> <member name="M:Microsoft.Identity.Json.JsonConverter`1.WriteJson(Microsoft.Identity.Json.JsonWriter,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.JsonConverter`1.WriteJson(Microsoft.Identity.Json.JsonWriter,`0,Microsoft.Identity.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> to write to.</param> <param name="value">The value.</param> <param name="serializer">The calling serializer.</param> </member> <member name="M:Microsoft.Identity.Json.JsonConverter`1.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,System.Object,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConverter`1.ReadJson(Microsoft.Identity.Json.JsonReader,System.Type,`0,System.Boolean,Microsoft.Identity.Json.JsonSerializer)"> <summary> Reads the JSON representation of the object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> to read from.</param> <param name="objectType">Type of the object.</param> <param name="existingValue">The existing value of object being read. If there is no existing value then <c>null</c> will be used.</param> <param name="hasExistingValue">The existing value has a value.</param> <param name="serializer">The calling serializer.</param> <returns>The object value.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonConverter`1.CanConvert(System.Type)"> <summary> Determines whether this instance can convert the specified object type. </summary> <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> <member name="T:Microsoft.Identity.Json.JsonConverterAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> to use the specified <see cref="T:Microsoft.Identity.Json.JsonConverter"/> when serializing the member or class. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonConverterAttribute.ConverterType"> <summary> Gets the <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> <value>The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.JsonConverter"/>.</value> </member> <member name="P:Microsoft.Identity.Json.JsonConverterAttribute.ConverterParameters"> <summary> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> described by <see cref="P:Microsoft.Identity.Json.JsonConverterAttribute.ConverterType"/>. If <c>null</c>, the default constructor is used. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonConverterAttribute.#ctor(System.Type)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonConverterAttribute"/> class. </summary> <param name="converterType">Type of the <see cref="T:Microsoft.Identity.Json.JsonConverter"/>.</param> </member> <member name="M:Microsoft.Identity.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonConverterAttribute"/> class. </summary> <param name="converterType">Type of the <see cref="T:Microsoft.Identity.Json.JsonConverter"/>.</param> <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. Can be <c>null</c>.</param> </member> <member name="T:Microsoft.Identity.Json.JsonConverterCollection"> <summary> Represents a collection of <see cref="T:Microsoft.Identity.Json.JsonConverter"/>. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonDictionaryAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> how to serialize the collection. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonDictionaryAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonDictionaryAttribute"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonDictionaryAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonDictionaryAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Microsoft.Identity.Json.JsonException"> <summary> The exception thrown when an error occurs during JSON serialization or deserialization. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonException.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonException"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonException"/> class with a specified error message. </summary> <param name="message">The error message that explains the reason for the exception.</param> </member> <member name="M:Microsoft.Identity.Json.JsonException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param> </member> <member name="M:Microsoft.Identity.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonException"/> class. </summary> <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception> <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception> </member> <member name="T:Microsoft.Identity.Json.JsonExtensionDataAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection and write values during serialization. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonExtensionDataAttribute.WriteData"> <summary> Gets or sets a value that indicates whether to write extension data when serializing the object. </summary> <value> <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>. </value> </member> <member name="P:Microsoft.Identity.Json.JsonExtensionDataAttribute.ReadData"> <summary> Gets or sets a value that indicates whether to read extension data when deserializing the object. </summary> <value> <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>. </value> </member> <member name="M:Microsoft.Identity.Json.JsonExtensionDataAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonExtensionDataAttribute"/> class. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonIgnoreAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> not to serialize the public field or public read/write property value. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonNameTable"> <summary> Base class for a table of atomized string objects. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonNameTable.Get(System.Char[],System.Int32,System.Int32)"> <summary> Gets the string containing the same characters as the specified range of characters in the given array. </summary> <param name="key">The character array containing the name to find.</param> <param name="start">The zero-based index into the array specifying the first character of the name.</param> <param name="length">The number of characters in the name.</param> </member> <member name="T:Microsoft.Identity.Json.JsonObjectAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> how to serialize the object. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonObjectAttribute.MemberSerialization"> <summary> Gets or sets the member serialization. </summary> <value>The member serialization.</value> </member> <member name="P:Microsoft.Identity.Json.JsonObjectAttribute.ItemNullValueHandling"> <summary> Gets or sets how the object's properties with null values are handled during serialization and deserialization. </summary> <value>How the object's properties with null values are handled during serialization and deserialization.</value> </member> <member name="P:Microsoft.Identity.Json.JsonObjectAttribute.ItemRequired"> <summary> Gets or sets a value that indicates whether the object's properties are required. </summary> <value> A value indicating whether the object's properties are required. </value> </member> <member name="M:Microsoft.Identity.Json.JsonObjectAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonObjectAttribute"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonObjectAttribute.#ctor(Microsoft.Identity.Json.MemberSerialization)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonObjectAttribute"/> class with the specified member serialization. </summary> <param name="memberSerialization">The member serialization.</param> </member> <member name="M:Microsoft.Identity.Json.JsonObjectAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonObjectAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Microsoft.Identity.Json.JsonPropertyAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> to always serialize the member with the specified name. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemConverterType"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> type used when serializing the property's collection items. </summary> <value>The collection's items <see cref="T:Microsoft.Identity.Json.JsonConverter"/> type.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemConverterParameters"> <summary> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> described by <see cref="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemConverterType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.JsonConverter"/> that exactly matches the number, order, and type of these parameters. </summary> <example> <code> [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] </code> </example> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.NamingStrategyType"> <summary> Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/>. </summary> <value>The <see cref="T:System.Type"/> of the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/>.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.NamingStrategyParameters"> <summary> The parameter list to use when constructing the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> described by <see cref="P:Microsoft.Identity.Json.JsonPropertyAttribute.NamingStrategyType"/>. If <c>null</c>, the default constructor is used. When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Microsoft.Identity.Json.Serialization.NamingStrategy"/> that exactly matches the number, order, and type of these parameters. </summary> <example> <code> [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] </code> </example> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.NullValueHandling"> <summary> Gets or sets the null value handling used when serializing this property. </summary> <value>The null value handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.DefaultValueHandling"> <summary> Gets or sets the default value handling used when serializing this property. </summary> <value>The default value handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ReferenceLoopHandling"> <summary> Gets or sets the reference loop handling used when serializing this property. </summary> <value>The reference loop handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ObjectCreationHandling"> <summary> Gets or sets the object creation handling used when deserializing this property. </summary> <value>The object creation handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.TypeNameHandling"> <summary> Gets or sets the type name handling used when serializing this property. </summary> <value>The type name handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.IsReference"> <summary> Gets or sets whether this property's value is serialized as a reference. </summary> <value>Whether this property's value is serialized as a reference.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.Order"> <summary> Gets or sets the order of serialization of a member. </summary> <value>The numeric order of serialization.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.Required"> <summary> Gets or sets a value indicating whether this property is required. </summary> <value> A value indicating whether this property is required. </value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.PropertyName"> <summary> Gets or sets the name of the property. </summary> <value>The name of the property.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemReferenceLoopHandling"> <summary> Gets or sets the reference loop handling used when serializing the property's collection items. </summary> <value>The collection's items reference loop handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemTypeNameHandling"> <summary> Gets or sets the type name handling used when serializing the property's collection items. </summary> <value>The collection's items type name handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonPropertyAttribute.ItemIsReference"> <summary> Gets or sets whether this property's collection items are serialized as a reference. </summary> <value>Whether this property's collection items are serialized as a reference.</value> </member> <member name="M:Microsoft.Identity.Json.JsonPropertyAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonPropertyAttribute"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonPropertyAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonPropertyAttribute"/> class with the specified name. </summary> <param name="propertyName">Name of the property.</param> </member> <member name="T:Microsoft.Identity.Json.JsonReader"> <summary> Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.SkipAsync(System.Threading.CancellationToken)"> <summary> Asynchronously skips the children of the current token. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsBooleanAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsBytesAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[]. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDecimalAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDoubleAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsInt32Async(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsStringAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived classes can override this behaviour for true asynchronicity.</remarks> </member> <member name="T:Microsoft.Identity.Json.JsonReader.State"> <summary> Specifies the state of the reader. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Start"> <summary> A <see cref="T:Microsoft.Identity.Json.JsonReader"/> read method has not been called. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Complete"> <summary> The end of the file has been reached successfully. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Property"> <summary> Reader is at a property. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.ObjectStart"> <summary> Reader is at the start of an object. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Object"> <summary> Reader is in an object. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.ArrayStart"> <summary> Reader is at the start of an array. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Array"> <summary> Reader is in an array. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Closed"> <summary> The <see cref="M:Microsoft.Identity.Json.JsonReader.Close"/> method has been called. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.PostValue"> <summary> Reader has just read a value. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.ConstructorStart"> <summary> Reader is at the start of a constructor. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Constructor"> <summary> Reader is in a constructor. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Error"> <summary> An error occurred that prevents the read operation from continuing. </summary> </member> <member name="F:Microsoft.Identity.Json.JsonReader.State.Finished"> <summary> The end of the file has been reached successfully. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.CurrentState"> <summary> Gets the current reader state. </summary> <value>The current reader state.</value> </member> <member name="P:Microsoft.Identity.Json.JsonReader.CloseInput"> <summary> Gets or sets a value indicating whether the source should be closed when this reader is closed. </summary> <value> <c>true</c> to close the source when this reader is closed; otherwise <c>false</c>. The default is <c>true</c>. </value> </member> <member name="P:Microsoft.Identity.Json.JsonReader.SupportMultipleContent"> <summary> Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. </summary> <value> <c>true</c> to support reading multiple pieces of JSON content; otherwise <c>false</c>. The default is <c>false</c>. </value> </member> <member name="P:Microsoft.Identity.Json.JsonReader.QuoteChar"> <summary> Gets the quotation mark character used to enclose the value of a string. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.DateTimeZoneHandling"> <summary> Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.DateParseHandling"> <summary> Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.FloatParseHandling"> <summary> Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.DateFormatString"> <summary> Gets or sets how custom date formatted strings are parsed when reading JSON. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.MaxDepth"> <summary> Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Microsoft.Identity.Json.JsonReaderException"/>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.TokenType"> <summary> Gets the type of the current JSON token. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.Value"> <summary> Gets the text value of the current JSON token. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.ValueType"> <summary> Gets the .NET type for the current JSON token. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.Depth"> <summary> Gets the depth of the current token in the JSON document. </summary> <value>The depth of the current token in the JSON document.</value> </member> <member name="P:Microsoft.Identity.Json.JsonReader.Path"> <summary> Gets the path of the current JSON token. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReader.Culture"> <summary> Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReader.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReader"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReader.Read"> <summary> Reads the next JSON token from the source. </summary> <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsInt32"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsString"> <summary> Reads the next JSON token from the source as a <see cref="T:System.String"/>. </summary> <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsBytes"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[]. </summary> <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDouble"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsBoolean"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDecimal"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDateTime"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.ReadAsDateTimeOffset"> <summary> Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonReader.Skip"> <summary> Skips the children of the current token. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReader.SetToken(Microsoft.Identity.Json.JsonToken)"> <summary> Sets the current token. </summary> <param name="newToken">The new token.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReader.SetToken(Microsoft.Identity.Json.JsonToken,System.Object)"> <summary> Sets the current token and value. </summary> <param name="newToken">The new token.</param> <param name="value">The value.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReader.SetToken(Microsoft.Identity.Json.JsonToken,System.Object,System.Boolean)"> <summary> Sets the current token and value. </summary> <param name="newToken">The new token.</param> <param name="value">The value.</param> <param name="updateIndex">A flag indicating whether the position index inside an array should be updated.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReader.SetStateBasedOnCurrent"> <summary> Sets the state based on current token type. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReader.Dispose(System.Boolean)"> <summary> Releases unmanaged and - optionally - managed resources. </summary> <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReader.Close"> <summary> Changes the reader's state to <see cref="F:Microsoft.Identity.Json.JsonReader.State.Closed"/>. If <see cref="P:Microsoft.Identity.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the source is also closed. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonReaderException"> <summary> The exception thrown when an error occurs while reading JSON text. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonReaderException.LineNumber"> <summary> Gets the line number indicating where the error occurred. </summary> <value>The line number indicating where the error occurred.</value> </member> <member name="P:Microsoft.Identity.Json.JsonReaderException.LinePosition"> <summary> Gets the line position indicating where the error occurred. </summary> <value>The line position indicating where the error occurred.</value> </member> <member name="P:Microsoft.Identity.Json.JsonReaderException.Path"> <summary> Gets the path to the JSON where the error occurred. </summary> <value>The path to the JSON where the error occurred.</value> </member> <member name="M:Microsoft.Identity.Json.JsonReaderException.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReaderException"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonReaderException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReaderException"/> class with a specified error message. </summary> <param name="message">The error message that explains the reason for the exception.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReaderException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReaderException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param> </member> <member name="M:Microsoft.Identity.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReaderException"/> class. </summary> <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception> <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception> </member> <member name="M:Microsoft.Identity.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonReaderException"/> class with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="path">The path to the JSON where the error occurred.</param> <param name="lineNumber">The line number indicating where the error occurred.</param> <param name="linePosition">The line position indicating where the error occurred.</param> <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param> </member> <member name="T:Microsoft.Identity.Json.JsonRequiredAttribute"> <summary> Instructs the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonSerializationException"> <summary> The exception thrown when an error occurs during JSON serialization or deserialization. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializationException.LineNumber"> <summary> Gets the line number indicating where the error occurred. </summary> <value>The line number indicating where the error occurred.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializationException.LinePosition"> <summary> Gets the line position indicating where the error occurred. </summary> <value>The line position indicating where the error occurred.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializationException.Path"> <summary> Gets the path to the JSON where the error occurred. </summary> <value>The path to the JSON where the error occurred.</value> </member> <member name="M:Microsoft.Identity.Json.JsonSerializationException.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializationException"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonSerializationException.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializationException"/> class with a specified error message. </summary> <param name="message">The error message that explains the reason for the exception.</param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializationException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializationException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializationException"/> class. </summary> <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception> <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception> </member> <member name="M:Microsoft.Identity.Json.JsonSerializationException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializationException"/> class with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="path">The path to the JSON where the error occurred.</param> <param name="lineNumber">The line number indicating where the error occurred.</param> <param name="linePosition">The line position indicating where the error occurred.</param> <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param> </member> <member name="T:Microsoft.Identity.Json.JsonSerializer"> <summary> Serializes and deserializes objects into and from the JSON format. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON. </summary> </member> <member name="E:Microsoft.Identity.Json.JsonSerializer.Error"> <summary> Occurs when the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> errors during serialization and deserialization. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.ReferenceResolver"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.SerializationBinder"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.TraceWriter"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages. </summary> <value>The trace writer.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.EqualityComparer"> <summary> Gets or sets the equality comparer used by the serializer when comparing references. </summary> <value>The equality comparer.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"> <summary> Gets or sets how type name writing and reading is handled by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.TypeNameHandling.None" />. </summary> <remarks> <see cref="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source. Incoming types should be validated with a custom <see cref="P:Microsoft.Identity.Json.JsonSerializer.SerializationBinder"/> when deserializing with a value other than <see cref="F:Microsoft.Identity.Json.TypeNameHandling.None"/>. </remarks> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.TypeNameAssemblyFormat"> <summary> Gets or sets how a type name assembly is written and resolved by the serializer. The default value is <see cref="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple" />. </summary> <value>The type name assembly format.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.TypeNameAssemblyFormatHandling"> <summary> Gets or sets how a type name assembly is written and resolved by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.TypeNameAssemblyFormatHandling.Simple" />. </summary> <value>The type name assembly format.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.PreserveReferencesHandling"> <summary> Gets or sets how object references are preserved by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.PreserveReferencesHandling.None" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.ReferenceLoopHandling"> <summary> Gets or sets how reference loops (e.g. a class referencing itself) is handled. The default value is <see cref="F:Microsoft.Identity.Json.ReferenceLoopHandling.Error" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.MissingMemberHandling"> <summary> Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.MissingMemberHandling.Ignore" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.NullValueHandling"> <summary> Gets or sets how null values are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.NullValueHandling.Include" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.DefaultValueHandling"> <summary> Gets or sets how default values are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.DefaultValueHandling.Include" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.ObjectCreationHandling"> <summary> Gets or sets how objects are created during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.ObjectCreationHandling.Auto" />. </summary> <value>The object creation handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.ConstructorHandling"> <summary> Gets or sets how constructors are used during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.ConstructorHandling.Default" />. </summary> <value>The constructor handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.MetadataPropertyHandling"> <summary> Gets or sets how metadata properties are used during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.MetadataPropertyHandling.Default" />. </summary> <value>The metadata properties handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.Converters"> <summary> Gets a collection <see cref="T:Microsoft.Identity.Json.JsonConverter"/> that will be used during serialization. </summary> <value>Collection <see cref="T:Microsoft.Identity.Json.JsonConverter"/> that will be used during serialization.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.ContractResolver"> <summary> Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.Context"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods. </summary> <value>The context.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.Formatting"> <summary> Indicates how JSON text output is formatted. The default value is <see cref="F:Microsoft.Identity.Json.Formatting.None" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.DateFormatHandling"> <summary> Gets or sets how dates are written to JSON text. The default value is <see cref="F:Microsoft.Identity.Json.DateFormatHandling.IsoDateFormat" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.DateTimeZoneHandling"> <summary> Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.DateTimeZoneHandling.RoundtripKind" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.DateParseHandling"> <summary> Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON. The default value is <see cref="F:Microsoft.Identity.Json.DateParseHandling.DateTime" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.FloatParseHandling"> <summary> Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. The default value is <see cref="F:Microsoft.Identity.Json.FloatParseHandling.Double" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.FloatFormatHandling"> <summary> Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>, are written as JSON text. The default value is <see cref="F:Microsoft.Identity.Json.FloatFormatHandling.String" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.StringEscapeHandling"> <summary> Gets or sets how strings are escaped when writing JSON text. The default value is <see cref="F:Microsoft.Identity.Json.StringEscapeHandling.Default" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.DateFormatString"> <summary> Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text. The default value is <c>"yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"</c>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.Culture"> <summary> Gets or sets the culture used when reading JSON. The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.MaxDepth"> <summary> Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Microsoft.Identity.Json.JsonReaderException"/>. A null value means there is no maximum. The default value is <c>null</c>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializer.CheckAdditionalContent"> <summary> Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. The default value is <c>false</c>. </summary> <value> <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>. </value> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> class. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Create"> <summary> Creates a new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will not use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </summary> <returns> A new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will not use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Create(Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Creates a new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance using the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will not use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </summary> <param name="settings">The settings to be applied to the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/>.</param> <returns> A new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance using the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will not use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.CreateDefault"> <summary> Creates a new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </summary> <returns> A new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/>. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.CreateDefault(Microsoft.Identity.Json.JsonSerializerSettings)"> <summary> Creates a new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance using the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </summary> <param name="settings">The settings to be applied to the <see cref="T:Microsoft.Identity.Json.JsonSerializer"/>.</param> <returns> A new <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> instance using the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. The <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> will use default settings from <see cref="P:Microsoft.Identity.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/>. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)"> <summary> Populates the JSON values onto the target object. </summary> <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to read values from.</param> <param name="target">The target object to populate values onto.</param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Populate(Microsoft.Identity.Json.JsonReader,System.Object)"> <summary> Populates the JSON values onto the target object. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> that contains the JSON structure to read values from.</param> <param name="target">The target object to populate values onto.</param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Deserialize(Microsoft.Identity.Json.JsonReader)"> <summary> Deserializes the JSON structure contained by the specified <see cref="T:Microsoft.Identity.Json.JsonReader"/>. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> that contains the JSON structure to deserialize.</param> <returns>The <see cref="T:System.Object"/> being deserialized.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)"> <summary> Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/> into an instance of the specified type. </summary> <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param> <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param> <returns>The instance of <paramref name="objectType"/> being deserialized.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Deserialize``1(Microsoft.Identity.Json.JsonReader)"> <summary> Deserializes the JSON structure contained by the specified <see cref="T:Microsoft.Identity.Json.JsonReader"/> into an instance of the specified type. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> containing the object.</param> <typeparam name="T">The type of the object to deserialize.</typeparam> <returns>The instance of <typeparamref name="T"/> being deserialized.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Deserialize(Microsoft.Identity.Json.JsonReader,System.Type)"> <summary> Deserializes the JSON structure contained by the specified <see cref="T:Microsoft.Identity.Json.JsonReader"/> into an instance of the specified type. </summary> <param name="reader">The <see cref="T:Microsoft.Identity.Json.JsonReader"/> containing the object.</param> <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param> <returns>The instance of <paramref name="objectType"/> being deserialized.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)"> <summary> Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure using the specified <see cref="T:System.IO.TextWriter"/>. </summary> <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param> <param name="value">The <see cref="T:System.Object"/> to serialize.</param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Serialize(Microsoft.Identity.Json.JsonWriter,System.Object,System.Type)"> <summary> Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure using the specified <see cref="T:Microsoft.Identity.Json.JsonWriter"/>. </summary> <param name="jsonWriter">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> used to write the JSON structure.</param> <param name="value">The <see cref="T:System.Object"/> to serialize.</param> <param name="objectType"> The type of the value being serialized. This parameter is used when <see cref="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Microsoft.Identity.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match. Specifying the type is optional. </param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)"> <summary> Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure using the specified <see cref="T:System.IO.TextWriter"/>. </summary> <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param> <param name="value">The <see cref="T:System.Object"/> to serialize.</param> <param name="objectType"> The type of the value being serialized. This parameter is used when <see cref="P:Microsoft.Identity.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match. Specifying the type is optional. </param> </member> <member name="M:Microsoft.Identity.Json.JsonSerializer.Serialize(Microsoft.Identity.Json.JsonWriter,System.Object)"> <summary> Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure using the specified <see cref="T:Microsoft.Identity.Json.JsonWriter"/>. </summary> <param name="jsonWriter">The <see cref="T:Microsoft.Identity.Json.JsonWriter"/> used to write the JSON structure.</param> <param name="value">The <see cref="T:System.Object"/> to serialize.</param> </member> <member name="T:Microsoft.Identity.Json.JsonSerializerSettings"> <summary> Specifies the settings on a <see cref="T:Microsoft.Identity.Json.JsonSerializer"/> object. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ReferenceLoopHandling"> <summary> Gets or sets how reference loops (e.g. a class referencing itself) are handled. The default value is <see cref="F:Microsoft.Identity.Json.ReferenceLoopHandling.Error" />. </summary> <value>Reference loop handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.MissingMemberHandling"> <summary> Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.MissingMemberHandling.Ignore" />. </summary> <value>Missing member handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ObjectCreationHandling"> <summary> Gets or sets how objects are created during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.ObjectCreationHandling.Auto" />. </summary> <value>The object creation handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.NullValueHandling"> <summary> Gets or sets how null values are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.NullValueHandling.Include" />. </summary> <value>Null value handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.DefaultValueHandling"> <summary> Gets or sets how default values are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.DefaultValueHandling.Include" />. </summary> <value>The default value handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.Converters"> <summary> Gets or sets a <see cref="T:Microsoft.Identity.Json.JsonConverter"/> collection that will be used during serialization. </summary> <value>The converters.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.PreserveReferencesHandling"> <summary> Gets or sets how object references are preserved by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.PreserveReferencesHandling.None" />. </summary> <value>The preserve references handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.TypeNameHandling"> <summary> Gets or sets how type name writing and reading is handled by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.TypeNameHandling.None" />. </summary> <remarks> <see cref="P:Microsoft.Identity.Json.JsonSerializerSettings.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source. Incoming types should be validated with a custom <see cref="P:Microsoft.Identity.Json.JsonSerializerSettings.SerializationBinder"/> when deserializing with a value other than <see cref="F:Microsoft.Identity.Json.TypeNameHandling.None"/>. </remarks> <value>The type name handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.MetadataPropertyHandling"> <summary> Gets or sets how metadata properties are used during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.MetadataPropertyHandling.Default" />. </summary> <value>The metadata properties handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.TypeNameAssemblyFormat"> <summary> Gets or sets how a type name assembly is written and resolved by the serializer. The default value is <see cref="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple" />. </summary> <value>The type name assembly format.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.TypeNameAssemblyFormatHandling"> <summary> Gets or sets how a type name assembly is written and resolved by the serializer. The default value is <see cref="F:Microsoft.Identity.Json.TypeNameAssemblyFormatHandling.Simple" />. </summary> <value>The type name assembly format.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ConstructorHandling"> <summary> Gets or sets how constructors are used during deserialization. The default value is <see cref="F:Microsoft.Identity.Json.ConstructorHandling.Default" />. </summary> <value>The constructor handling.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ContractResolver"> <summary> Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. </summary> <value>The contract resolver.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.EqualityComparer"> <summary> Gets or sets the equality comparer used by the serializer when comparing references. </summary> <value>The equality comparer.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ReferenceResolver"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. </summary> <value>The reference resolver.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.ReferenceResolverProvider"> <summary> Gets or sets a function that creates the <see cref="T:Microsoft.Identity.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. </summary> <value>A function that creates the <see cref="T:Microsoft.Identity.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.TraceWriter"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages. </summary> <value>The trace writer.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.SerializationBinder"> <summary> Gets or sets the <see cref="T:Microsoft.Identity.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names. </summary> <value>The binder.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.Error"> <summary> Gets or sets the error handler called during serialization and deserialization. </summary> <value>The error handler called during serialization and deserialization.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.Context"> <summary> Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods. </summary> <value>The context.</value> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.DateFormatString"> <summary> Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text. The default value is <c>"yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"</c>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.MaxDepth"> <summary> Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Microsoft.Identity.Json.JsonReaderException"/>. A null value means there is no maximum. The default value is <c>null</c>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.Formatting"> <summary> Indicates how JSON text output is formatted. The default value is <see cref="F:Microsoft.Identity.Json.Formatting.None" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.DateFormatHandling"> <summary> Gets or sets how dates are written to JSON text. The default value is <see cref="F:Microsoft.Identity.Json.DateFormatHandling.IsoDateFormat" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.DateTimeZoneHandling"> <summary> Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization. The default value is <see cref="F:Microsoft.Identity.Json.DateTimeZoneHandling.RoundtripKind" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.DateParseHandling"> <summary> Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON. The default value is <see cref="F:Microsoft.Identity.Json.DateParseHandling.DateTime" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.FloatFormatHandling"> <summary> Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>, are written as JSON. The default value is <see cref="F:Microsoft.Identity.Json.FloatFormatHandling.String" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.FloatParseHandling"> <summary> Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. The default value is <see cref="F:Microsoft.Identity.Json.FloatParseHandling.Double" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.StringEscapeHandling"> <summary> Gets or sets how strings are escaped when writing JSON text. The default value is <see cref="F:Microsoft.Identity.Json.StringEscapeHandling.Default" />. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.Culture"> <summary> Gets or sets the culture used when reading JSON. The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonSerializerSettings.CheckAdditionalContent"> <summary> Gets a value indicating whether there will be a check for additional content after deserializing an object. The default value is <c>false</c>. </summary> <value> <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>. </value> </member> <member name="M:Microsoft.Identity.Json.JsonSerializerSettings.#ctor"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonSerializerSettings"/> class. </summary> </member> <member name="T:Microsoft.Identity.Json.JsonTextReader"> <summary> Represents a reader that provides fast, non-cached, forward-only access to JSON text data. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsBooleanAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsBytesAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[]. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDecimalAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDoubleAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsInt32Async(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsStringAsync(System.Threading.CancellationToken)"> <summary> Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.#ctor(System.IO.TextReader)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Identity.Json.JsonTextReader"/> class with the specified <see cref="T:System.IO.TextReader"/>. </summary> <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the JSON data to read.</param> </member> <member name="P:Microsoft.Identity.Json.JsonTextReader.PropertyNameTable"> <summary> Gets or sets the reader's property name table. </summary> </member> <member name="P:Microsoft.Identity.Json.JsonTextReader.ArrayPool"> <summary> Gets or sets the reader's character buffer pool. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.Read"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/>. </summary> <returns> <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read. </returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsInt32"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDateTime"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsString"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>. </summary> <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsBytes"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[]. </summary> <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsBoolean"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDateTimeOffset"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDecimal"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.ReadAsDouble"> <summary> Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. </summary> <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.Close"> <summary> Changes the reader's state to <see cref="F:Microsoft.Identity.Json.JsonReader.State.Closed"/>. If <see cref="P:Microsoft.Identity.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextReader"/> is also closed. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonTextReader.HasLineInfo"> <summary> Gets a value indicating whether the class can return line information. </summary> <returns> <c>true</c> if <see cref="P:Microsoft.Identity.Json.JsonTextReader.LineNumber"/> and <see cref="P:Microsoft.Identity.Json.JsonTextReader.LinePosition"/> can be provided; otherwise, <c>false</c>. </returns> </member> <member name="P:Microsoft.Identity.Json.JsonTextReader.LineNumber"> <summary> Gets the current line number. </summary> <value> The current line number or 0 if no line information is available (for example, <see cref="M:Microsoft.Identity.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>). </value> </member> <member name="P:Microsoft.Identity.Json.JsonTextReader.LinePosition"> <summary> Gets the current line position. </summary> <value> The current line position or 0 if no line information is available (for example, <see cref="M:Microsoft.Identity.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>). </value> </member> <member name="T:Microsoft.Identity.Json.JsonTextWriter"> <summary> Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. </summary> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.FlushAsync(System.Threading.CancellationToken)"> <summary> Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes the JSON value delimiter. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteEndAsync(Microsoft.Identity.Json.JsonToken,System.Threading.CancellationToken)"> <summary> Asynchronously writes the specified end token. </summary> <param name="token">The end token to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.CloseAsync(System.Threading.CancellationToken)"> <summary> Asynchronously closes this writer. If <see cref="P:Microsoft.Identity.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteEndAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes the end of the current JSON object or array. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteIndentAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes indent characters. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes an indent space. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)"> <summary> Asynchronously writes raw JSON without changing the writer's state. </summary> <param name="json">The raw JSON to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteNullAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes a null value. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)"> <summary> Asynchronously writes the property name of a name/value pair of a JSON object. </summary> <param name="name">The name of the property.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)"> <summary> Asynchronously writes the property name of a name/value pair of a JSON object. </summary> <param name="name">The name of the property.</param> <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteStartArrayAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes the beginning of a JSON array. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteStartObjectAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes the beginning of a JSON object. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)"> <summary> Asynchronously writes the start of a constructor with the given name. </summary> <param name="name">The name of the constructor.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteUndefinedAsync(System.Threading.CancellationToken)"> <summary> Asynchronously writes an undefined value. </summary> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)"> <summary> Asynchronously writes the given white space. </summary> <param name="ws">The string of white space characters.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Boolean"/> value. </summary> <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Byte"/> value. </summary> <param name="value">The <see cref="T:System.Byte"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Byte"/>[] value. </summary> <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Char"/> value. </summary> <param name="value">The <see cref="T:System.Char"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.DateTime"/> value. </summary> <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value. </summary> <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Decimal"/> value. </summary> <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Double"/> value. </summary> <param name="value">The <see cref="T:System.Double"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Single"/> value. </summary> <param name="value">The <see cref="T:System.Single"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Guid"/> value. </summary> <param name="value">The <see cref="T:System.Guid"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Int32"/> value. </summary> <param name="value">The <see cref="T:System.Int32"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Int64"/> value. </summary> <param name="value">The <see cref="T:System.Int64"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Object"/> value. </summary> <param name="value">The <see cref="T:System.Object"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.SByte"/> value. </summary> <param name="value">The <see cref="T:System.SByte"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Int16"/> value. </summary> <param name="value">The <see cref="T:System.Int16"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.String"/> value. </summary> <param name="value">The <see cref="T:System.String"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.TimeSpan"/> value. </summary> <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.UInt32"/> value. </summary> <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value. </summary> <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param> <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns> <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will execute synchronously, returning an already-completed task.</remarks> </member> <member name="M:Microsoft.Identity.Json.JsonTextWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)"> <summary> Asynchronously writes a <see cref="T:System.UInt64"/> value. </summary> <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> <param name="cancellationToken">The token to monitor for cancellation reque |