TransactionManagerCommunicationException Constructors

Definition

Initializes a new instance of the TransactionManagerCommunicationException class.

Overloads

TransactionManagerCommunicationException()

Initializes a new instance of the TransactionManagerCommunicationException class.

TransactionManagerCommunicationException(String)

Initializes a new instance of the TransactionManagerCommunicationException class with the specified message.

TransactionManagerCommunicationException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the TransactionManagerCommunicationException class with the specified serialization and streaming context information.

TransactionManagerCommunicationException(String, Exception)

Initializes a new instance of the TransactionManagerCommunicationException class with the specified message and inner exception.

TransactionManagerCommunicationException()

Initializes a new instance of the TransactionManagerCommunicationException class.

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

Applies to

TransactionManagerCommunicationException(String)

Initializes a new instance of the TransactionManagerCommunicationException class with the specified message.

public:
 TransactionManagerCommunicationException(System::String ^ message);
public TransactionManagerCommunicationException (string? message);
public TransactionManagerCommunicationException (string message);
new System.Transactions.TransactionManagerCommunicationException : string -> System.Transactions.TransactionManagerCommunicationException
Public Sub New (message As String)

Parameters

message
String

A String that contains a message that explains why the exception occurred.

Applies to

TransactionManagerCommunicationException(SerializationInfo, StreamingContext)

Caution

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Initializes a new instance of the TransactionManagerCommunicationException class with the specified serialization and streaming context information.

protected:
 TransactionManagerCommunicationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TransactionManagerCommunicationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected TransactionManagerCommunicationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Transactions.TransactionManagerCommunicationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Transactions.TransactionManagerCommunicationException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Transactions.TransactionManagerCommunicationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Transactions.TransactionManagerCommunicationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

A SerializationInfo object that describes a failed serialization.

context
StreamingContext

A SerializationInfo object that describes a failed serialization context.

Attributes

Applies to

TransactionManagerCommunicationException(String, Exception)

Initializes a new instance of the TransactionManagerCommunicationException class with the specified message and inner exception.

public:
 TransactionManagerCommunicationException(System::String ^ message, Exception ^ innerException);
public TransactionManagerCommunicationException (string? message, Exception? innerException);
public TransactionManagerCommunicationException (string message, Exception innerException);
new System.Transactions.TransactionManagerCommunicationException : string * Exception -> System.Transactions.TransactionManagerCommunicationException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A String that contains a message that explains why the exception occurred.

innerException
Exception

Gets the exception instance that causes the current exception. For more information, see the InnerException property.

Applies to