SecurityTokenReplayDetectedException Constructors

Definition

Initializes a new instance of the SecurityTokenReplayDetectedException class.

Overloads

SecurityTokenReplayDetectedException()

Initializes a new instance of the SecurityTokenReplayDetectedException class.

SecurityTokenReplayDetectedException(String)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified error message.

SecurityTokenReplayDetectedException(SerializationInfo, StreamingContext)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified XML serialization data and contextual data about the source and destination of the serialization stream.

SecurityTokenReplayDetectedException(String, Exception)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified error message and root cause of the error.

SecurityTokenReplayDetectedException()

Initializes a new instance of the SecurityTokenReplayDetectedException class.

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

Applies to

SecurityTokenReplayDetectedException(String)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified error message.

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

Parameters

message
String

A message that identifies the reason the exception occurred.

Applies to

SecurityTokenReplayDetectedException(SerializationInfo, StreamingContext)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified XML serialization data and contextual data about the source and destination of the serialization stream.

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

Parameters

info
SerializationInfo

A SerializationInfo that contains values that are used during serialization and deserialization.

context
StreamingContext

A SecurityTokenReplayDetectedException that contains data about the source and destination of the serialization stream.

Applies to

SecurityTokenReplayDetectedException(String, Exception)

Initializes a new instance of the SecurityTokenReplayDetectedException class using the specified error message and root cause of the error.

public:
 SecurityTokenReplayDetectedException(System::String ^ message, Exception ^ inner);
public SecurityTokenReplayDetectedException (string message, Exception inner);
new System.IdentityModel.Tokens.SecurityTokenReplayDetectedException : string * Exception -> System.IdentityModel.Tokens.SecurityTokenReplayDetectedException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

A message that identifies the reason the exception occurred.

inner
Exception

An Exception that represents the root cause of the exception.

Applies to