Microsoft.Cci.SourceEditHostEnvironment.ReportEdits C# (CSharp) Method

ReportEdits() public method

Raises the Edits event with the given edit event arguments. The events are raised on different thread.
public ReportEdits ( Microsoft.Cci.EditEventArgs editEventArguments ) : void
editEventArguments Microsoft.Cci.EditEventArgs
return void
    public void ReportEdits(EditEventArgs editEventArguments) {
      if (this.Edits != null)
        ThreadPool.QueueUserWorkItem(this.ReportEditsUsingDifferentThread, editEventArguments);
    }