Microsoft.Azure.Commands.Batch.RestartBatchComputeNodeCommand.ExecuteCmdlet C# (CSharp) Method

ExecuteCmdlet() public method

public ExecuteCmdlet ( ) : void
return void
        public override void ExecuteCmdlet()
        {
            RebootComputeNodeParameters parameters = new RebootComputeNodeParameters(this.BatchContext, this.PoolId,
                this.Id, this.ComputeNode, this.AdditionalBehaviors)
            {
                RebootOption = this.RebootOption
            };
            BatchClient.RebootComputeNode(parameters);
        }
    }
RestartBatchComputeNodeCommand