This documentation is archived and is not being maintained.

DuplicateWaitObjectException Constructor (String, String)

Initializes a new instance of the DuplicateWaitObjectException class with a specified error message and the name of the parameter that causes this exception.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

public:
DuplicateWaitObjectException(
	String^ parameterName, 
	String^ message
)

Parameters

parameterName
Type: System::String
The name of the parameter that caused the exception.
message
Type: System::String
The message that describes the error.

The content of the parameterName and message parameters is intended to be understood by humans. The caller of this constructor is required to ensure that these strings have 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 a null reference (Nothing in Visual Basic) 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 DuplicateWaitObjectException.

Property

Value

InnerException

A null reference (Nothing in Visual Basic)

Message

The error message string.

ParamName

The parameter name string.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: