DirectiveProcessor.Errors 属性

让生成,在处理指令时的错误。

命名空间:  Microsoft.VisualStudio.TextTemplating
程序集:  Microsoft.VisualStudio.TextTemplating.11.0(在 Microsoft.VisualStudio.TextTemplating.11.0.dll 中)

语法

声明
Protected Property Errors As CompilerErrorCollection
protected CompilerErrorCollection Errors { get; private set; }
protected:
property CompilerErrorCollection^ Errors {
    CompilerErrorCollection^ get ();
    private: void set (CompilerErrorCollection^ value);
}
member Errors : CompilerErrorCollection with get, private set
function get Errors () : CompilerErrorCollection
private function set Errors (value : CompilerErrorCollection)

属性值

类型:System.CodeDom.Compiler.CompilerErrorCollection
包含错误和警告,会发生处理指令时的 CompilerErrorCollection

备注

生成,在处理指令时的错误此属性可以存储。 引擎将错误传递给宿主,在已完成处理时,因此,宿主可以决定如何显示它们。 例如主机可在用户界面中显示错误或将它们写入文件。

示例

下面的代码示例演示自定义指令处理器的可能实现。 此代码示例摘自为 DirectiveProcessor 类提供的一个更大的示例。

private CompilerErrorCollection errorsValue;
public new CompilerErrorCollection Errors
{
    get { return errorsValue; }
}
Private errorsValue As CompilerErrorCollection
Public Shadows ReadOnly Property Errors() As CompilerErrorCollection
    Get
        Return errorsValue
    End Get
End Property

.NET Framework 安全性

请参见

参考

DirectiveProcessor 类

Microsoft.VisualStudio.TextTemplating 命名空间