Microsoft.ManagementConsole.ResultNode.SendSelectionRequest C# (CSharp) Method

SendSelectionRequest() public method

public SendSelectionRequest ( bool selected ) : void
selected bool
return void
        public void SendSelectionRequest(bool selected)
        {
            if (this._listView == null)
            {
                throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.ResultNodeSendSelectionRequestMustBeAddedToListView));
            }
            this._listView.ChangeResultNodeSelection(this, selected);
        }