ErrorTag Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
| ErrorTag() |
Initialisiert eine neue Instanz von ErrorTag vom Typ SyntaxError ohne QuickInfo-Inhalt. |
| ErrorTag(String) |
Initialisiert eine neue Instanz eines ErrorTag mit dem angegebenen Typ ohne QuickInfo-Inhalt. |
| ErrorTag(String, Object) |
Initialisiert eine neue Instanz eines ErrorTag mit dem angegebenen Typ. |
ErrorTag()
Initialisiert eine neue Instanz von ErrorTag vom Typ SyntaxError ohne QuickInfo-Inhalt.
public:
ErrorTag();
public:
ErrorTag();
ErrorTag();
public ErrorTag ();
Public Sub New ()
Gilt für
ErrorTag(String)
Initialisiert eine neue Instanz eines ErrorTag mit dem angegebenen Typ ohne QuickInfo-Inhalt.
public:
ErrorTag(System::String ^ errorType);
public:
ErrorTag(Platform::String ^ errorType);
ErrorTag(std::wstring const & errorType);
public ErrorTag (string errorType);
new Microsoft.VisualStudio.Text.Tagging.ErrorTag : string -> Microsoft.VisualStudio.Text.Tagging.ErrorTag
Public Sub New (errorType As String)
Parameter
- errorType
- String
Der zu verwendende Fehlertyp,
Gilt für
ErrorTag(String, Object)
Initialisiert eine neue Instanz eines ErrorTag mit dem angegebenen Typ.
public:
ErrorTag(System::String ^ errorType, System::Object ^ toolTipContent);
public:
ErrorTag(Platform::String ^ errorType, Platform::Object ^ toolTipContent);
ErrorTag(std::wstring const & errorType, winrt::Windows::Foundation::IInspectable const & toolTipContent);
public ErrorTag (string errorType, object toolTipContent);
new Microsoft.VisualStudio.Text.Tagging.ErrorTag : string * obj -> Microsoft.VisualStudio.Text.Tagging.ErrorTag
Public Sub New (errorType As String, toolTipContent As Object)
Parameter
- errorType
- String
Der zu verwendende Fehlertyp.
- toolTipContent
- Object
Der anzuzeigende QuickInfo-Inhalt. Ist möglicherweise NULL.
Ausnahmen
errorType ist NULL.