NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AmbiguousMatchException Constructor (String)

Initializes an instance of AmbiguousMatchException with its message string set to the given message and the root cause exception set to null.

[Visual Basic]
Overloads Public Sub New( _
   ByVal message As String _
)
[C#]
public AmbiguousMatchException(
   string message
);
[C++]
public: AmbiguousMatchException(
   String* message
);
[JScript]
public function AmbiguousMatchException(
   message : String
);

Parameters

message
The message that indicates the reason this exception was thrown.

Remarks

AmbiguousMatchException inherits from the Exception. This constructor sets the properties of the Exception object as follows:

Property Value
InnerException null
Message The message string.

See Also

AmbiguousMatchException Class | AmbiguousMatchException Members | System.Reflection Namespace | AmbiguousMatchException Constructor Overload List