ArgumentOutOfRangeException.Message Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the error message and the string representation of the invalid argument value, or only the error message if the argument value is null.
public:
virtual property System::String ^ Message { System::String ^ get(); };
public override string Message { get; }
member this.Message : string
Public Overrides ReadOnly Property Message As String
Property Value
The text message for this exception. The value of this property takes one of two forms, as follows.
Condition | Value |
---|---|
The ActualValue is null .
| The Message string passed to the constructor. |
The ActualValue is not null .
| 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.
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.