Microsoft.ManagementConsole.ActionsPaneItemCollection.Notify C# (CSharp) 메소드

Notify() 개인적인 메소드

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