AmbiguousMatchException Class
.NET Framework 3.0
The exception that is thrown when binding to a member results in more than one member matching the binding criteria. This class cannot be inherited.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class AmbiguousMatchException Inherits SystemException 'Usage Dim instance As AmbiguousMatchException
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class AmbiguousMatchException extends SystemException
SerializableAttribute ComVisibleAttribute(true) public final class AmbiguousMatchException extends SystemException
Not applicable.
AmbiguousMatchException uses the HRESULT COR_E_AMBIGUOUSMATCH which has the value 0x8000211D.
An AmbiguousMatchException is thrown when a member is invoked late-bound and multiple overloads satisfy the binding criteria, or when more than one member matches the binding criteria passed to a reflection method that can return only a single result (for example, System.Type.GetMethod or System.Type.GetProperty).
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: