UnsupportedPolicyOptionsException Constructors

Definition

Initializes an instance of the UnsupportedPolicyOptionsException class.

Overloads

UnsupportedPolicyOptionsException()

Initializes an instance of the UnsupportedPolicyOptionsException class.

UnsupportedPolicyOptionsException(String)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified error message.

UnsupportedPolicyOptionsException(SerializationInfo, StreamingContext)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified serialization information and streaming context.

UnsupportedPolicyOptionsException(String, Exception)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified error message and the original exception that caused this exception to be thrown.

UnsupportedPolicyOptionsException()

Initializes an instance of the UnsupportedPolicyOptionsException class.

public:
 UnsupportedPolicyOptionsException();
public UnsupportedPolicyOptionsException ();
Public Sub New ()

Applies to

UnsupportedPolicyOptionsException(String)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified error message.

public:
 UnsupportedPolicyOptionsException(System::String ^ message);
public UnsupportedPolicyOptionsException (string message);
new System.IdentityModel.Selectors.UnsupportedPolicyOptionsException : string -> System.IdentityModel.Selectors.UnsupportedPolicyOptionsException
Public Sub New (message As String)

Parameters

message
String

The error message.

Applies to

UnsupportedPolicyOptionsException(SerializationInfo, StreamingContext)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified serialization information and streaming context.

protected:
 UnsupportedPolicyOptionsException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected UnsupportedPolicyOptionsException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.Selectors.UnsupportedPolicyOptionsException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.Selectors.UnsupportedPolicyOptionsException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

SerializationInfo that holds the serialized object data about the exception that is being thrown.

context
StreamingContext

The StreamingContext that contains contextual information about the source or destination.

Applies to

UnsupportedPolicyOptionsException(String, Exception)

Initializes an instance of the UnsupportedPolicyOptionsException class with the specified error message and the original exception that caused this exception to be thrown.

public:
 UnsupportedPolicyOptionsException(System::String ^ message, Exception ^ innerException);
public UnsupportedPolicyOptionsException (string message, Exception innerException);
new System.IdentityModel.Selectors.UnsupportedPolicyOptionsException : string * Exception -> System.IdentityModel.Selectors.UnsupportedPolicyOptionsException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The original exception that caused this exception to be thrown.

Applies to