共用方式為


TextTransformation.Errors 屬性

這個 API 支援 .NET Framework 基礎結構,但您不可以直接在程式碼中使用它。

取得文字範本轉換程序的錯誤集合。

命名空間:  Microsoft.VisualStudio.TextTemplating
組件:  Microsoft.VisualStudio.TextTemplating.11.0 (在 Microsoft.VisualStudio.TextTemplating.11.0.dll 中)

語法

'宣告
Public ReadOnly Property Errors As CompilerErrorCollection
public CompilerErrorCollection Errors { get; }
public:
property CompilerErrorCollection^ Errors {
    CompilerErrorCollection^ get ();
}
member Errors : CompilerErrorCollection
function get Errors () : CompilerErrorCollection

屬性值

型別:System.CodeDom.Compiler.CompilerErrorCollection
CompilerErrorCollection ,包含在文字範本轉換程序期間引發的錯誤和警告。

備註

文字範本轉換程序期間發生的錯誤會儲存在這個屬性中。引擎會在完成處理時將錯誤傳遞至主機,主機可以決定如何顯示。例如,主機可以在 UI 中顯示錯誤或將錯誤寫入檔案。使用者不應該直接存取這個屬性。

.NET Framework 安全性

請參閱

參考

TextTransformation 類別

Microsoft.VisualStudio.TextTemplating 命名空間

CompilerErrorCollection

Error

Warning

其他資源

How to: Generate Errors and Warnings from Text Templates