BuildProvider.ProcessCompileErrors(CompilerResults) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当在派生类中被重写时,能够查看编译器错误消息,以便将其修改为提供更多信息。
public:
virtual void ProcessCompileErrors(System::CodeDom::Compiler::CompilerResults ^ results);
public virtual void ProcessCompileErrors (System.CodeDom.Compiler.CompilerResults results);
abstract member ProcessCompileErrors : System.CodeDom.Compiler.CompilerResults -> unit
override this.ProcessCompileErrors : System.CodeDom.Compiler.CompilerResults -> unit
Public Overridable Sub ProcessCompileErrors (results As CompilerResults)
参数
- results
- CompilerResults
编译器结果。
注解
通常重写此方法,以便在显示编译器错误之前对其进行修改,以使错误文本对用户更有帮助。 在了解某些错误的上下文并可以向用户提供有关如何修复这些错误的信息的情况下,这非常有用。 原始编译器错误消息通常特定于特定语言构造,可能不会使用户了解实际原因或解决方案。
可以使用传递给 方法的 对象来访问错误 CompilerResults 。