BExplorer.Shell.ShellView.RaiseItemUpdated C# (CSharp) Method

RaiseItemUpdated() public method

public RaiseItemUpdated ( ItemUpdateType type, IListItemEx old, IListItemEx newItem, Int32 index ) : void
type ItemUpdateType
old IListItemEx
newItem IListItemEx
index Int32
return void
    public void RaiseItemUpdated(ItemUpdateType type, IListItemEx old, IListItemEx newItem, Int32 index) {
      this.ItemUpdated?.Invoke(this, new ItemUpdatedEventArgs(type, newItem, old, index));
    }
ShellView