ScopeSnapshotNotFoundException Constructor
Initializes a new instance of the ScopeSnapshotNotFoundException class.
Namespace: Microsoft.Workflow.Client
Assembly: Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)
Overload List
Name | Description | |
---|---|---|
ScopeSnapshotNotFoundException() | Initializes a new instance of the ScopeSnapshotNotFoundException class. |
|
ScopeSnapshotNotFoundException(SerializationInfo, StreamingContext) | Initializes a new instance of the ScopeSnapshotNotFoundException class with specified serialized data. |
|
ScopeSnapshotNotFoundException(String) | Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message. |
|
ScopeSnapshotNotFoundException(String, Exception) | Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message and inner exception. |
See Also
ScopeSnapshotNotFoundException Class
Microsoft.Workflow.Client Namespace
Return to top
ScopeSnapshotNotFoundException Constructor ()
Initializes a new instance of the ScopeSnapshotNotFoundException class.
Syntax
public ScopeSnapshotNotFoundException()
public:
ScopeSnapshotNotFoundException()
new : unit -> ScopeSnapshotNotFoundException
Public Sub New
Return to top
ScopeSnapshotNotFoundException Constructor (SerializationInfo, StreamingContext)
Initializes a new instance of the ScopeSnapshotNotFoundException class with specified serialized data.
Syntax
protected ScopeSnapshotNotFoundException(
SerializationInfo info,
StreamingContext context
)
protected:
ScopeSnapshotNotFoundException(
SerializationInfo^ info,
StreamingContext context
)
new :
info:SerializationInfo *
context:StreamingContext -> ScopeSnapshotNotFoundException
Protected Sub New (
info As SerializationInfo,
context As StreamingContext
)
Parameters
info
Type: System.Runtime.Serialization.SerializationInfoThe serialized information about the exception.
context
Type: System.Runtime.Serialization.StreamingContextThe contextual information about the source or destination.
Return to top
ScopeSnapshotNotFoundException Constructor (String)
Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message.
Syntax
public ScopeSnapshotNotFoundException(
string message
)
public:
ScopeSnapshotNotFoundException(
String^ message
)
new :
message:string -> ScopeSnapshotNotFoundException
Public Sub New (
message As String
)
Parameters
message
Type: System.StringThe error message that describes the exception.
Return to top
ScopeSnapshotNotFoundException Constructor (String, Exception)
Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message and inner exception.
Syntax
public ScopeSnapshotNotFoundException(
string message,
Exception inner
)
public:
ScopeSnapshotNotFoundException(
String^ message,
Exception^ inner
)
new :
message:string *
inner:Exception -> ScopeSnapshotNotFoundException
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