Vbc.ErrorReport Property

Definition

Gets or sets a string value that specifies how the task will report internal compiler errors.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 property System::String ^ ErrorReport { System::String ^ get(); void set(System::String ^ value); };
public string ErrorReport { get; set; }
member this.ErrorReport : string with get, set
Public Property ErrorReport As String

Property Value

A string value that specifies how the task will report internal compiler errors.

Remarks

This property can have the following values:

  • prompt

  • send

  • none

If prompt is specified and an internal compiler error occurs, the user is prompted with an option of whether to send the error data to Microsoft.

If send is specified and an internal compiler error occurs, the task sends the error data to Microsoft.

The default value is none, which reports errors in text output only.

Applies to