InvalidEnumArgumentException Constructor (String^, Int32, Type^)
.NET Framework (current version)
Initializes a new instance of the InvalidEnumArgumentException class with a message generated from the argument, the invalid value, and an enumeration class.
Assembly: System (in System.dll)
public: InvalidEnumArgumentException( String^ argumentName, int invalidValue, Type^ enumClass )
Parameters
- argumentName
-
Type:
System::String^
The name of the argument that caused the exception.
- invalidValue
-
Type:
System::Int32
The value of the argument that failed.
- enumClass
-
Type:
System::Type^
A Type that represents the enumeration class with the valid values.
This constructor will create a localized message saying that the argumentName parameter was invalid because the value passed in was invalid, and that the value should be one of the values in the enumeration class.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Available since 1.1
Silverlight
Available since 2.0
Show: