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