Share via


CredentialUnavailableException Constructors

Definition

Overloads

CredentialUnavailableException(String)

Creates a new CredentialUnavailableException with the specified message.

CredentialUnavailableException(SerializationInfo, StreamingContext)

A constructor used for serialization.

CredentialUnavailableException(String, Exception)

Creates a new CredentialUnavailableException with the specified message.

CredentialUnavailableException(String)

Source:
CredentialUnavailableException.cs
Source:
CredentialUnavailableException.cs

Creates a new CredentialUnavailableException with the specified message.

public CredentialUnavailableException (string message);
new Azure.Identity.CredentialUnavailableException : string -> Azure.Identity.CredentialUnavailableException
Public Sub New (message As String)

Parameters

message
String

The message describing the authentication failure.

Applies to

CredentialUnavailableException(SerializationInfo, StreamingContext)

Source:
CredentialUnavailableException.cs
Source:
CredentialUnavailableException.cs

A constructor used for serialization.

protected CredentialUnavailableException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Azure.Identity.CredentialUnavailableException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Azure.Identity.CredentialUnavailableException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

Applies to

CredentialUnavailableException(String, Exception)

Source:
CredentialUnavailableException.cs
Source:
CredentialUnavailableException.cs

Creates a new CredentialUnavailableException with the specified message.

public CredentialUnavailableException (string message, Exception innerException);
new Azure.Identity.CredentialUnavailableException : string * Exception -> Azure.Identity.CredentialUnavailableException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message describing the authentication failure.

innerException
Exception

The exception underlying the authentication failure.

Applies to