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 | |
---|---|---|
ScopeNotFoundException() | Initializes a new instance of the ScopeNotFoundException class with default values. |
|
ScopeNotFoundException(SerializationInfo, StreamingContext) | Initializes a new instance of the ScopeNotFoundException class with serialized data. |
|
ScopeNotFoundException(String) | Initializes a new instance of the ScopeNotFoundException class with error message. |
|
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
info
Type: System.Runtime.Serialization.SerializationInfoThe object that contains the serialized information about the exception.
context
Type: System.Runtime.Serialization.StreamingContextThe contextual information about the source or destination.
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.StringThe 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.StringThe error message that describes the exception.
inner
Type: System.ExceptionThe inner exception that is the cause of the current exception.
Return to top