FederationException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the FederationException class.
Overloads
FederationException() |
Initializes a new instance of the FederationException class. |
FederationException(String) |
Initializes a new instance of the FederationException class with a specified error message. |
FederationException(SerializationInfo, StreamingContext) |
Initializes a new instance of the FederationException class with serialized data. |
FederationException(String, Exception) |
Initializes a new instance of the FederationException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
FederationException()
Initializes a new instance of the FederationException class.
public:
FederationException();
public FederationException ();
Public Sub New ()
Remarks
This constructor initializes the Message property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
The following table shows the initial property values for the new instance.
Property | Value |
---|---|
InnerException | null . |
Message | The localized error message string. |
Applies to
FederationException(String)
Initializes a new instance of the FederationException class with a specified error message.
public:
FederationException(System::String ^ message);
public FederationException (string message);
new System.IdentityModel.Services.FederationException : string -> System.IdentityModel.Services.FederationException
Public Sub New (message As String)
Parameters
- message
- String
The error message that explains the reason for the exception.
Remarks
This constructor initializes the Message property of the new exception using the message
parameter. The content of message
is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
The following table shows the initial property values for the new instance.
Property | Value |
---|---|
InnerException | null . |
Message | The error message string. |
Applies to
FederationException(SerializationInfo, StreamingContext)
Initializes a new instance of the FederationException class with serialized data.
protected:
FederationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FederationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.Services.FederationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.Services.FederationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
A SerializationInfo object that holds the serialized object data.
- context
- StreamingContext
A StreamingContext object that contains the contextual information about the source or destination.
Remarks
This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.
Applies to
FederationException(String, Exception)
Initializes a new instance of the FederationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public:
FederationException(System::String ^ message, Exception ^ inner);
public FederationException (string message, Exception inner);
new System.IdentityModel.Services.FederationException : string * Exception -> System.IdentityModel.Services.FederationException
Public Sub New (message As String, inner As Exception)
Parameters
- message
- String
The error message that explains the reason for the exception.
- inner
- Exception
The Exception that is the cause of the current exception. If the inner
parameter is not null
, the current exception is raised in a catch
block that handles the inner exception.
Remarks
An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor.
The following table shows the initial property values for the new instance.
Property | Value |
---|---|
InnerException | The inner exception reference. |
Message | The error message string. |