Microsoft.Cci.MetadataHostEnvironment.ReportErrors C# (CSharp) Method

ReportErrors() public method

Raises the Errors event with the given error event arguments. The event is raised on a separate thread.
public ReportErrors ( Microsoft errorEventArguments ) : void
errorEventArguments Microsoft
return void
    public virtual void ReportErrors(Microsoft.Cci.ErrorEventArgs errorEventArguments) {
      if (this.Errors != null)
        ThreadPool.QueueUserWorkItem(this.SynchronousReportErrors, errorEventArguments);
    }