Share via


ScopeNotFoundException Constructor

 

Initializes a new instance of the ScopeNotFoundException class.

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

Overload List

Name Description
System_CAPS_pubmethod ScopeNotFoundException()

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

System_CAPS_protmethod ScopeNotFoundException(SerializationInfo, StreamingContext)

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

System_CAPS_pubmethod ScopeNotFoundException(String)

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

System_CAPS_pubmethod ScopeNotFoundException(String, Exception)

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

See Also

ScopeNotFoundException Class
Microsoft.Workflow.Client Namespace

Return to top

ScopeNotFoundException Constructor ()

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

Syntax

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

Return to top

ScopeNotFoundException Constructor (SerializationInfo, StreamingContext)

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

Syntax

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

Parameters

Return to top

ScopeNotFoundException Constructor (String)

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

Syntax

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

Parameters

  • message
    Type: System.String

    The error message that describes the exception.

Return to top

ScopeNotFoundException Constructor (String, Exception)

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

Syntax

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

Parameters

  • message
    Type: System.String

    The error message that describes the exception.

  • inner
    Type: System.Exception

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

Return to top