WorkflowCommunicationException Constructor
Initializes a new instance of the WorkflowCommunicationException class.
Namespace: Microsoft.Workflow.Client
Assembly: Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)
Overload List
Name | Description | |
---|---|---|
WorkflowCommunicationException() | Initializes a new instance of the WorkflowCommunicationException class. |
|
WorkflowCommunicationException(SerializationInfo, StreamingContext) | Initializes a new instance of the WorkflowCommunicationException class. |
|
WorkflowCommunicationException(String) | Initializes a new instance of the WorkflowCommunicationException class. |
|
WorkflowCommunicationException(String, Exception) | Initializes a new instance of the WorkflowCommunicationException class. |
See Also
WorkflowCommunicationException Class
Microsoft.Workflow.Client Namespace
Return to top
WorkflowCommunicationException Constructor ()
Initializes a new instance of the WorkflowCommunicationException class.
Syntax
public WorkflowCommunicationException()
public:
WorkflowCommunicationException()
new : unit -> WorkflowCommunicationException
Public Sub New
Return to top
WorkflowCommunicationException Constructor (SerializationInfo, StreamingContext)
Initializes a new instance of the WorkflowCommunicationException class.
Syntax
protected WorkflowCommunicationException(
SerializationInfo info,
StreamingContext context
)
protected:
WorkflowCommunicationException(
SerializationInfo^ info,
StreamingContext context
)
new :
info:SerializationInfo *
context:StreamingContext -> WorkflowCommunicationException
Protected Sub New (
info As SerializationInfo,
context As StreamingContext
)
Parameters
info
Type: System.Runtime.Serialization.SerializationInfoThe serialization information.
context
Type: System.Runtime.Serialization.StreamingContextThe streaming context.
Return to top
WorkflowCommunicationException Constructor (String)
Initializes a new instance of the WorkflowCommunicationException class.
Syntax
public WorkflowCommunicationException(
string message
)
public:
WorkflowCommunicationException(
String^ message
)
new :
message:string -> WorkflowCommunicationException
Public Sub New (
message As String
)
Parameters
message
Type: System.StringThe error message.
Return to top
WorkflowCommunicationException Constructor (String, Exception)
Initializes a new instance of the WorkflowCommunicationException class.
Syntax
public WorkflowCommunicationException(
string message,
Exception inner
)
public:
WorkflowCommunicationException(
String^ message,
Exception^ inner
)
new :
message:string *
inner:Exception -> WorkflowCommunicationException
Public Sub New (
message As String,
inner As Exception
)
Parameters
message
Type: System.StringThe error message.
inner
Type: System.ExceptionThe inner exception.
Return to top