ExternalError Structure

 

Used to create a new external error.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)

public struct ExternalError

NameDescription
System_CAPS_pubmethodEquals(Object)

(Inherited from ValueType.)

System_CAPS_pubmethodGetHashCode()

(Inherited from ValueType.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from ValueType.)

NameDescription
System_CAPS_pubfieldbstrFileName

File name of the file containing the error.

System_CAPS_pubfieldbstrText

Error text.

System_CAPS_pubfieldfError

Nonzero for error, zero for warning.

System_CAPS_pubfieldiCol

Error column number.

System_CAPS_pubfieldiErrorID

Error ID.

System_CAPS_pubfieldiLine

Error line number.

From: singlefileeditor.idl

typedef struct _tag_ExternalError {
    long iLine;
    long iCol;
    long iErrorID;
    BOOL fError;
    BSTR bstrText;
    BSTR bstrFileName;
} ExternalError;

This structure is used in the IVsEnumExternalErrors interface and is returned by a call to the Next method.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: