Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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
Available since 1.1
Return to top
Show:
© 2017 Microsoft