Microsoft.ManagementConsole.ResultNode.SendSelectionRequest C# (CSharp) Méthode

SendSelectionRequest() public méthode

public SendSelectionRequest ( bool selected ) : void
selected bool
Résultat 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);
        }