Microsoft.ManagementConsole.ActionsPaneItemCollection.Notify C# (CSharp) Method

Notify() private method

private Notify ( int index, ActionsPaneItem items, ActionsPaneItemCollectionChangeType action ) : void
index int
items ActionsPaneItem
action ActionsPaneItemCollectionChangeType
return void
        private void Notify(int index, ActionsPaneItem[] items, ActionsPaneItemCollectionChangeType action)
        {
            if (this.Changed != null)
            {
                this.Changed(this, new ActionsPaneItemCollectionEventArgs(index, items, action));
            }
        }