Прочетете на английски Редактиране

Споделяне чрез


ErrObject.Description Property

Definition

Returns or sets a String expression containing a descriptive string associated with an error. Read/write.

C#
public string Description { get; set; }

Property Value

Returns or sets a String expression containing a descriptive string associated with an error. Read/write.

Examples

This example assigns a user-defined message to the Description property of the Err object.

VB
On Error Resume Next
Err.Raise(60000)
Err.Description = "Your Widget needs a new Frob!"
MsgBox(Err.Description)

Remarks

The Description property setting consists of a short description of the error. Use this property to alert the user to an error that you cannot or do not want to handle. When generating a user-defined error, assign a short description of your error to the Description property. If the Description property is not filled in, and the value of the Number property corresponds to a Visual Basic run-time error, then the string returned by the ErrorToString function is set in the Description property when the error is generated.

Applies to

Продукт Версии
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also