AbandonedMutexException Constructors

Definition

Initializes a new instance of the AbandonedMutexException class.

Overloads

AbandonedMutexException()

Initializes a new instance of the AbandonedMutexException class with default values.

AbandonedMutexException(String)

Initializes a new instance of the AbandonedMutexException class with a specified error message.

AbandonedMutexException(Int32, WaitHandle)

Initializes a new instance of the AbandonedMutexException class with a specified index for the abandoned mutex, if applicable, and a Mutex object that represents the mutex.

AbandonedMutexException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the AbandonedMutexException class with serialized data.

AbandonedMutexException(String, Exception)

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

AbandonedMutexException(String, Int32, WaitHandle)

Initializes a new instance of the AbandonedMutexException class with a specified error message, the index of the abandoned mutex, if applicable, and the abandoned mutex.

AbandonedMutexException(String, Exception, Int32, WaitHandle)

Initializes a new instance of the AbandonedMutexException class with a specified error message, the inner exception, the index for the abandoned mutex, if applicable, and a Mutex object that represents the mutex.

AbandonedMutexException()

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

Initializes a new instance of the AbandonedMutexException class with default values.

C#
public AbandonedMutexException();

Remarks

This constructor initializes the Message property of the new instance to a system-supplied message that describes the error, such as "The wait completed due to an abandoned mutex." This message takes into account the current system culture.

The following table shows the initial property values for an instance of AbandonedMutexException.

Property Value
InnerException null.
Message The system-supplied error message string.
Mutex null.
MutexIndex -1 (minus one).

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

AbandonedMutexException(String)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

Initializes a new instance of the AbandonedMutexException class with a specified error message.

C#
public AbandonedMutexException(string message);
C#
public AbandonedMutexException(string? message);

Parameters

message
String

An error message that explains the reason for the exception.

Remarks

The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

The following table shows the initial property values for an instance of AbandonedMutexException initialized with this constructor.

Property Value
InnerException null.
Message message.
Mutex null.
MutexIndex -1 (minus one).

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

AbandonedMutexException(Int32, WaitHandle)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

Initializes a new instance of the AbandonedMutexException class with a specified index for the abandoned mutex, if applicable, and a Mutex object that represents the mutex.

C#
public AbandonedMutexException(int location, System.Threading.WaitHandle handle);
C#
public AbandonedMutexException(int location, System.Threading.WaitHandle? handle);

Parameters

location
Int32

The index of the abandoned mutex in the array of wait handles if the exception is thrown for the WaitAny method, or -1 if the exception is thrown for the WaitOne or WaitAll methods.

handle
WaitHandle

A Mutex object that represents the abandoned mutex.

Remarks

This constructor initializes the Message property of the new instance to a system-supplied message that describes the error, such as "The wait completed due to an abandoned mutex." This message takes into account the current system culture.

The following table shows the initial property values for an instance of AbandonedMutexException initialized with this constructor.

Property Value
InnerException null.
Message A system-supplied error message string.
Mutex handle.
MutexIndex location.

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

AbandonedMutexException(SerializationInfo, StreamingContext)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.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 AbandonedMutexException class with serialized data.

C#
protected AbandonedMutexException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
C#
[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 AbandonedMutexException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

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

context
StreamingContext

The StreamingContext object that contains contextual information about the source or destination.

Attributes

Remarks

This constructor is called during deserialization to reconstitute the exception object transmitted over a stream. For more information, see XML and SOAP Serialization.

See also

Applies to

.NET 9 and other versions
Product Versions (Obsolete)
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7 (8, 9)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

AbandonedMutexException(String, Exception)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

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

C#
public AbandonedMutexException(string message, Exception inner);
C#
public AbandonedMutexException(string? message, Exception? inner);

Parameters

message
String

An error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of AbandonedMutexException initialized with this constructor.

Property Value
InnerException inner.
Message message.
Mutex null.
MutexIndex -1 (minus one).

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

AbandonedMutexException(String, Int32, WaitHandle)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

Initializes a new instance of the AbandonedMutexException class with a specified error message, the index of the abandoned mutex, if applicable, and the abandoned mutex.

C#
public AbandonedMutexException(string message, int location, System.Threading.WaitHandle handle);
C#
public AbandonedMutexException(string? message, int location, System.Threading.WaitHandle? handle);

Parameters

message
String

An error message that explains the reason for the exception.

location
Int32

The index of the abandoned mutex in the array of wait handles if the exception is thrown for the WaitAny method, or -1 if the exception is thrown for the WaitOne or WaitAll methods.

handle
WaitHandle

A Mutex object that represents the abandoned mutex.

Remarks

The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

The following table shows the initial property values for an instance of AbandonedMutexException initialized with this constructor.

Property Value
InnerException null.
Message message.
Mutex handle.
MutexIndex location.

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

AbandonedMutexException(String, Exception, Int32, WaitHandle)

Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs
Source:
AbandonedMutexException.cs

Initializes a new instance of the AbandonedMutexException class with a specified error message, the inner exception, the index for the abandoned mutex, if applicable, and a Mutex object that represents the mutex.

C#
public AbandonedMutexException(string message, Exception inner, int location, System.Threading.WaitHandle handle);
C#
public AbandonedMutexException(string? message, Exception? inner, int location, System.Threading.WaitHandle? handle);

Parameters

message
String

An error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.

location
Int32

The index of the abandoned mutex in the array of wait handles if the exception is thrown for the WaitAny method, or -1 if the exception is thrown for the WaitOne or WaitAll methods.

handle
WaitHandle

A Mutex object that represents the abandoned mutex.

Remarks

The content of message is a text string intended to inform the user about the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.

The following table shows the initial property values for an instance of AbandonedMutexException initialized with this constructor.

Property Value
InnerException inner.
Message message.
Mutex handle.
MutexIndex location.

See also

Applies to

.NET 9 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0