TransactionException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TransactionException class.
Overloads
TransactionException() |
Initializes a new instance of the TransactionException class. |
TransactionException(String) |
Initializes a new instance of the TransactionException class with the specified message. |
TransactionException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the TransactionException class with the specified serialization and streaming context information. |
TransactionException(String, Exception) |
Initializes a new instance of the TransactionException class with the specified message and inner exception. |
TransactionException()
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
Initializes a new instance of the TransactionException class.
public:
TransactionException();
public TransactionException ();
Public Sub New ()
Applies to
TransactionException(String)
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
Initializes a new instance of the TransactionException class with the specified message.
public:
TransactionException(System::String ^ message);
public TransactionException (string? message);
public TransactionException (string message);
new System.Transactions.TransactionException : string -> System.Transactions.TransactionException
Public Sub New (message As String)
Parameters
Applies to
TransactionException(SerializationInfo, StreamingContext)
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
Caution
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initializes a new instance of the TransactionException class with the specified serialization and streaming context information.
protected:
TransactionException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TransactionException (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 TransactionException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Transactions.TransactionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Transactions.TransactionException
[<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.TransactionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Transactions.TransactionException
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
TransactionException(String, Exception)
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
- Source:
- TransactionException.cs
Initializes a new instance of the TransactionException class with the specified message and inner exception.
public:
TransactionException(System::String ^ message, Exception ^ innerException);
public TransactionException (string? message, Exception? innerException);
public TransactionException (string message, Exception innerException);
new System.Transactions.TransactionException : string * Exception -> System.Transactions.TransactionException
Public Sub New (message As String, innerException As Exception)
Parameters
- innerException
- Exception
Gets the exception instance that causes the current exception. For more information, see the InnerException property.