Share via


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
System_CAPS_pubmethod ActivityValidationException()

Initializes a new instance of the ActivityValidationException class.

System_CAPS_protmethod ActivityValidationException(SerializationInfo, StreamingContext)

Initializes a new instance of the ActivityValidationException class.

System_CAPS_pubmethod ActivityValidationException(String)

Initializes a new instance of the ActivityValidationException class.

System_CAPS_pubmethod 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

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.String

    The 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.String

    The message associated with the exception.

Return to top