Microsoft.ManagementConsole.ResultNodeCollectionEventArgs.ResultNodeCollectionEventArgs C# (CSharp) Method

ResultNodeCollectionEventArgs() public method

public ResultNodeCollectionEventArgs ( int index, ResultNode items, ResultNodeCollectionChangeType changeType ) : Microsoft.ManagementConsole.Internal
index int
items ResultNode
changeType ResultNodeCollectionChangeType
return Microsoft.ManagementConsole.Internal
        public ResultNodeCollectionEventArgs(int index, ResultNode[] items, ResultNodeCollectionChangeType changeType)
        {
            this._index = index;
            this._items = items;
            this._changeType = changeType;
        }
ResultNodeCollectionEventArgs