Sdílet prostřednictvím


TextTransformation.Error – metoda

Vytvoří novou chybu ukládat informace o chybách během procesu transformace textu šablony.

Obor názvů:  Microsoft.VisualStudio.TextTemplating
Sestavení:  Microsoft.VisualStudio.TextTemplating.11.0 (v Microsoft.VisualStudio.TextTemplating.11.0.dll)

Syntaxe

'Deklarace
Public Sub Error ( _
    message As String _
)
public void Error(
    string message
)
public:
void Error(
    String^ message
)
member Error : 
        message:string -> unit 
public function Error(
    message : String
)

Parametry

Poznámky

Přidá do kolekce došlo k chybě Errors procesu transformace textu šablony.Ve výchozím nastavení nastaví číslo řádku došlo k chybě -1 a sloupec číslo chyby-1.

Příklady

Následující příklad kódu ukazuje volací Error metoda text šablony.Vložte tento kód na libovolný textový soubor šablony a šablony transformace textu výsledky spuštění.Chyby se zobrazí v Seznam chyb.

<#
    string firstName = null;

    if(string.IsNullOrEmpty(firstName))
    {
        //raise an error, this will appear in the error list
        Error("I have no name.");
    }
#> 
<#
    Dim firstName as string = ""

    If string.IsNullOrEmpty(firstName) Then

        'raise an error, this will appear in the error list
        Me.Error("I have no name.")
    End If
#>

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

TextTransformation Třída

Microsoft.VisualStudio.TextTemplating – obor názvů

Errors

Další zdroje

How to: Generate Errors and Warnings from Text Templates