ArgumentOutOfRangeException.Message Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the error message and the string representation of the invalid argument value, or only the error message if the argument value is null.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property Message As String
public override string Message { get; }
Property Value
Type: System.String
The text message for this exception. The value of this property takes one of two forms, as follows.
Condition |
Value |
---|---|
The actualValue is nulla null reference (Nothing in Visual Basic). |
The message string passed to the constructor. |
The actualValue is not nulla null reference (Nothing in Visual Basic). |
The message string appended with the string representation of the invalid argument value. |
Remarks
This property overrides Message.
The error message should describe the expected values of the parameter that causes this exception. The error message should be localized.
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.