Share via


InvalidRequestException Constructor

 

Initializes a new instance of the InvalidRequestException class.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Overload List

Name Description
System_CAPS_pubmethod InvalidRequestException()

Initializes a new instance of the InvalidRequestException class.

System_CAPS_protmethod InvalidRequestException(SerializationInfo, StreamingContext)

Initializes a new instance of the InvalidRequestException class with specified information and context.

System_CAPS_pubmethod InvalidRequestException(String)

Initializes a new instance of the InvalidRequestException class with specified error message.

System_CAPS_pubmethod InvalidRequestException(String, Exception)

Initializes a new instance of the InvalidRequestException class with specified error message and inner exception.

See Also

InvalidRequestException Class
Microsoft.Workflow.Client Namespace

Return to top

InvalidRequestException Constructor ()

Initializes a new instance of the InvalidRequestException class.

Syntax

public InvalidRequestException()
public:
InvalidRequestException()
new : unit -> InvalidRequestException
Public Sub New

Return to top

InvalidRequestException Constructor (SerializationInfo, StreamingContext)

Initializes a new instance of the InvalidRequestException class with specified information and context.

Syntax

protected InvalidRequestException(
    SerializationInfo info,
    StreamingContext context
)
protected:
InvalidRequestException(
    SerializationInfo^ info,
    StreamingContext context
)
new : 
        info:SerializationInfo *
        context:StreamingContext -> InvalidRequestException
Protected Sub New (
    info As SerializationInfo,
    context As StreamingContext
)

Parameters

Return to top

InvalidRequestException Constructor (String)

Initializes a new instance of the InvalidRequestException class with specified error message.

Syntax

public InvalidRequestException(
    string message
)
public:
InvalidRequestException(
    String^ message
)
new : 
        message:string -> InvalidRequestException
Public Sub New (
    message As String
)

Parameters

Return to top

InvalidRequestException Constructor (String, Exception)

Initializes a new instance of the InvalidRequestException class with specified error message and inner exception.

Syntax

public InvalidRequestException(
    string message,
    Exception inner
)
public:
InvalidRequestException(
    String^ message,
    Exception^ inner
)
new : 
        message:string *
        inner:Exception -> InvalidRequestException
Public Sub New (
    message As String,
    inner As Exception
)

Parameters

Return to top