PinFailureException 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
PinFailureException() |
Creates a new instance of the PinFailureException class. |
PinFailureException(String) |
Creates a new instance of the PinFailureException class with a specified error message. |
PinFailureException(SerializationInfo, StreamingContext) |
Creates a new instance of the PinFailureException class with serialized data. |
PinFailureException(String, Exception) |
Creates a new instance of the PinFailureException class with a message and inner exception. |
PinFailureException()
Creates a new instance of the PinFailureException class.
public:
PinFailureException();
public PinFailureException ();
Public Sub New ()
Applies to
PinFailureException(String)
Creates a new instance of the PinFailureException class with a specified error message.
public:
PinFailureException(System::String ^ message);
public PinFailureException (string message);
new Microsoft.Rtc.Collaboration.PinManagement.PinFailureException : string -> Microsoft.Rtc.Collaboration.PinManagement.PinFailureException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the error.
Applies to
PinFailureException(SerializationInfo, StreamingContext)
Creates a new instance of the PinFailureException class with serialized data.
protected:
PinFailureException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PinFailureException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Rtc.Collaboration.PinManagement.PinFailureException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Rtc.Collaboration.PinManagement.PinFailureException
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
PinFailureException(String, Exception)
Creates a new instance of the PinFailureException class with a message and inner exception.
public:
PinFailureException(System::String ^ message, Exception ^ innerException);
public PinFailureException (string message, Exception innerException);
new Microsoft.Rtc.Collaboration.PinManagement.PinFailureException : string * Exception -> Microsoft.Rtc.Collaboration.PinManagement.PinFailureException
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.
Remarks
Initializes a specified error message, a reference to the inner exception that is the cause of this exception.