TextTransformation.Error 方法
建立新錯誤,以儲存在文字範本轉換程序期間發生的錯誤資訊。
命名空間: Microsoft.VisualStudio.TextTemplating
組件: Microsoft.VisualStudio.TextTemplating.10.0 (在 Microsoft.VisualStudio.TextTemplating.10.0.dll 中)
語法
'宣告
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
)
參數
- message
型別:System.String
描述錯誤的訊息。
備註
將錯誤加入至 Errors 的集合中,以進行文字範本轉換處理序。 將錯誤的行數目設定為 -1,預設資料欄的錯誤數目設為 -1。
範例
下列程式碼範例示範從文字範本呼叫 Error 方法。 將這個程式碼貼到任何文字範本檔案,並執行文字範本轉換,以查看結果。 錯誤會出現在 [錯誤清單 ] 中。
<#
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
#>
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualStudio.TextTemplating 命名空間