RequestException 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 RequestException class.
Overloads
RequestException() |
Initializes a new instance of the RequestException class. |
RequestException(String) |
Initializes a new instance of the RequestException class with a specified error message. |
RequestException(SerializationInfo, StreamingContext) |
Initializes a new instance of the RequestException class with serialized data. |
RequestException(String, Exception) |
Initializes a new instance of the RequestException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
RequestException()
Initializes a new instance of the RequestException class.
protected:
RequestException();
protected RequestException ();
Protected 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
RequestException(String)
Initializes a new instance of the RequestException class with a specified error message.
protected:
RequestException(System::String ^ message);
protected RequestException (string message);
new System.IdentityModel.RequestException : string -> System.IdentityModel.RequestException
Protected 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
RequestException(SerializationInfo, StreamingContext)
Initializes a new instance of the RequestException class with serialized data.
protected:
RequestException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RequestException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.RequestException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.RequestException
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
RequestException(String, Exception)
Initializes a new instance of the RequestException class with a specified error message and a reference to the inner exception that is the cause of this exception.
protected:
RequestException(System::String ^ message, Exception ^ innerException);
protected RequestException (string message, Exception innerException);
new System.IdentityModel.RequestException : string * Exception -> System.IdentityModel.RequestException
Protected Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The error message that explains the reason for the exception.
- innerException
- Exception
The Exception that is the cause of the current exception. If the innerException
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. |