InvalidMessageFrameException 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
InvalidMessageFrameException() |
Initializes a new instance of the InvalidMessageFrameException class. |
InvalidMessageFrameException(String) |
Initializes a new instance of the InvalidMessageFrameException class. |
InvalidMessageFrameException(String, Exception) |
Initializes a new instance of the InvalidMessageFrameException class. |
InvalidMessageFrameException()
Initializes a new instance of the InvalidMessageFrameException class.
public InvalidMessageFrameException ();
Public Sub New ()
Applies to
InvalidMessageFrameException(String)
Initializes a new instance of the InvalidMessageFrameException class.
public InvalidMessageFrameException (string message);
new Orleans.Runtime.Messaging.InvalidMessageFrameException : string -> Orleans.Runtime.Messaging.InvalidMessageFrameException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the error.
Applies to
InvalidMessageFrameException(String, Exception)
Initializes a new instance of the InvalidMessageFrameException class.
public InvalidMessageFrameException (string message, Exception innerException);
new Orleans.Runtime.Messaging.InvalidMessageFrameException : string * Exception -> Orleans.Runtime.Messaging.InvalidMessageFrameException
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.