Condividi tramite


AuthenticationException Constructors

Definition

Overloads

AuthenticationException()

Initializes a new instance of the AuthenticationException class.

AuthenticationException(String)

Initializes a new instance of the AuthenticationException class.

AuthenticationException(String, Exception)

Initializes a new instance of the AuthenticationException class.

AuthenticationException()

Initializes a new instance of the AuthenticationException class.

public AuthenticationException ();
Public Sub New ()

Applies to

AuthenticationException(String)

Initializes a new instance of the AuthenticationException class.

public AuthenticationException (string message);
new Microsoft.Rest.Azure.Authentication.AuthenticationException : string -> Microsoft.Rest.Azure.Authentication.AuthenticationException
Public Sub New (message As String)

Parameters

message
String

Exception message.

Applies to

AuthenticationException(String, Exception)

Initializes a new instance of the AuthenticationException class.

public AuthenticationException (string message, Exception innerException);
new Microsoft.Rest.Azure.Authentication.AuthenticationException : string * Exception -> Microsoft.Rest.Azure.Authentication.AuthenticationException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

Exception message.

innerException
Exception

Inner exception.

Applies to