DirectiveProcessor.Errors 属性

获取处理指令时发生的错误。

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

语法

声明
Protected ReadOnly Property Errors As CompilerErrorCollection
    Get
protected CompilerErrorCollection Errors { get; }
protected:
property CompilerErrorCollection^ Errors {
    CompilerErrorCollection^ get ();
}
member Errors : CompilerErrorCollection
function get Errors () : 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 命名空间