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

ReportSymbolTableEdits() public method

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