BuildProvider.ProcessCompileErrors(CompilerResults) メソッド

定義

派生クラスでオーバーライドされると、コンパイラのエラー メッセージを見直すことができ、より多くの情報を提供するようにメッセージを変更できます。

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 使用してアクセスできます。

適用対象