ScopeInactiveException Constructor

 

Initializes a new instance of the ScopeInactiveException class.

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

Overload List

Name Description
System_CAPS_pubmethod ScopeInactiveException()

Initializes a new instance of the ScopeInactiveException class with default values.

System_CAPS_protmethod ScopeInactiveException(SerializationInfo, StreamingContext)

Initializes a new instance of the ScopeInactiveException class with serialized data.

System_CAPS_pubmethod ScopeInactiveException(String)

Initializes a new instance of the ScopeInactiveException class with error message.

System_CAPS_pubmethod ScopeInactiveException(String, Exception)

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

See Also

ScopeInactiveException Class
Microsoft.Workflow.Client Namespace

Return to top

ScopeInactiveException Constructor ()

Initializes a new instance of the ScopeInactiveException class with default values.

Syntax

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

Return to top

ScopeInactiveException Constructor (SerializationInfo, StreamingContext)

Initializes a new instance of the ScopeInactiveException class with serialized data.

Syntax

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

Parameters

Return to top

ScopeInactiveException Constructor (String)

Initializes a new instance of the ScopeInactiveException class with error message.

Syntax

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

Parameters

  • message
    Type: System.String

    The message that describes the error.

Return to top

ScopeInactiveException Constructor (String, Exception)

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

Syntax

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

Parameters

  • message
    Type: System.String

    The message that describes the error.

  • inner
    Type: System.Exception

    The inner exception that is the cause of the current exception.

Return to top