Share via


DiscoveryDataTransactionAlreadyBoundException Constructors

Definition

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class.

Overloads

DiscoveryDataTransactionAlreadyBoundException()

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class.

DiscoveryDataTransactionAlreadyBoundException(Exception)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using a reference to the inner exception that is the cause of this exception.

DiscoveryDataTransactionAlreadyBoundException(Guid)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified parameters.

DiscoveryDataTransactionAlreadyBoundException(String)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified error message.

DiscoveryDataTransactionAlreadyBoundException(SerializationInfo, StreamingContext)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using serialized data.

DiscoveryDataTransactionAlreadyBoundException(String, Exception)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified message and a reference to the inner exception that is the cause of this exception.

DiscoveryDataTransactionAlreadyBoundException()

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class.

public:
 DiscoveryDataTransactionAlreadyBoundException();
public DiscoveryDataTransactionAlreadyBoundException ();
Public Sub New ()

Applies to

DiscoveryDataTransactionAlreadyBoundException(Exception)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using a reference to the inner exception that is the cause of this exception.

public:
 DiscoveryDataTransactionAlreadyBoundException(Exception ^ inner);
public DiscoveryDataTransactionAlreadyBoundException (Exception inner);
new Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException : Exception -> Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The exception that is the cause of the current exception.

Applies to

DiscoveryDataTransactionAlreadyBoundException(Guid)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified parameters.

public:
 DiscoveryDataTransactionAlreadyBoundException(Guid discoverySourceId);
public DiscoveryDataTransactionAlreadyBoundException (Guid discoverySourceId);
new Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException : Guid -> Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException
Public Sub New (discoverySourceId As Guid)

Parameters

discoverySourceId
Guid

The GUID of the discovery source object the discovery data transaction is bound to.

Applies to

DiscoveryDataTransactionAlreadyBoundException(String)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified error message.

public:
 DiscoveryDataTransactionAlreadyBoundException(System::String ^ message);
public DiscoveryDataTransactionAlreadyBoundException (string message);
new Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException : string -> Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException
Public Sub New (message As String)

Parameters

message
String

The error message that describes the current exception.

Applies to

DiscoveryDataTransactionAlreadyBoundException(SerializationInfo, StreamingContext)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using serialized data.

protected:
 DiscoveryDataTransactionAlreadyBoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DiscoveryDataTransactionAlreadyBoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The object that holds the serialized data about the exception being thrown.

context
StreamingContext

Context information about the source or destination of the serialized object.

Remarks

This constructor is called during deserialization to reconstitute the exception object that is transmitted over a stream.

Applies to

DiscoveryDataTransactionAlreadyBoundException(String, Exception)

Initializes a new instance of the DiscoveryDataTransactionAlreadyBoundException class using the specified message and a reference to the inner exception that is the cause of this exception.

public:
 DiscoveryDataTransactionAlreadyBoundException(System::String ^ message, Exception ^ inner);
public DiscoveryDataTransactionAlreadyBoundException (string message, Exception inner);
new Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException : string * Exception -> Microsoft.EnterpriseManagement.Common.DiscoveryDataTransactionAlreadyBoundException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that describes the current exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to