OperationFailureException 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.
Overloads
OperationFailureException() |
Initializes a new instance of the class. |
OperationFailureException(String) |
Initializes a new instance of the class. |
OperationFailureException(SerializationInfo, StreamingContext) |
Initializes a new instance of the class from serialized data. |
OperationFailureException(String, Exception) |
Initializes a new instance of the class. |
OperationFailureException(String, Exception, OperationFailureReason) |
Initializes a new instance of the class. |
OperationFailureException()
Initializes a new instance of the class.
public:
OperationFailureException();
public OperationFailureException ();
Public Sub New ()
Applies to
OperationFailureException(String)
Initializes a new instance of the class.
public:
OperationFailureException(System::String ^ message);
public OperationFailureException (string message);
new Microsoft.Rtc.Signaling.OperationFailureException : string -> Microsoft.Rtc.Signaling.OperationFailureException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the error.
Applies to
OperationFailureException(SerializationInfo, StreamingContext)
Initializes a new instance of the class from serialized data.
protected:
OperationFailureException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected OperationFailureException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Rtc.Signaling.OperationFailureException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Rtc.Signaling.OperationFailureException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The object that holds the serialized object data.
- context
- StreamingContext
The contextual information about the source or destination.
Applies to
OperationFailureException(String, Exception)
Initializes a new instance of the class.
public:
OperationFailureException(System::String ^ message, Exception ^ innerException);
public OperationFailureException (string message, Exception innerException);
new Microsoft.Rtc.Signaling.OperationFailureException : string * Exception -> Microsoft.Rtc.Signaling.OperationFailureException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The message that describes the error.
- innerException
- Exception
The exception that is the cause of the current exception.
Applies to
OperationFailureException(String, Exception, OperationFailureReason)
Initializes a new instance of the class.
public:
OperationFailureException(System::String ^ message, Exception ^ innerException, Microsoft::Rtc::Signaling::OperationFailureReason failureReason);
public OperationFailureException (string message, Exception innerException, Microsoft.Rtc.Signaling.OperationFailureReason failureReason);
new Microsoft.Rtc.Signaling.OperationFailureException : string * Exception * Microsoft.Rtc.Signaling.OperationFailureReason -> Microsoft.Rtc.Signaling.OperationFailureException
Public Sub New (message As String, innerException As Exception, failureReason As OperationFailureReason)
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 a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.
- failureReason
- OperationFailureReason
The reason for the failure of the operation.