ConoHaNet.OpenStackMember.RestartServer C# (CSharp) Method

RestartServer() public method

public RestartServer ( string serverId, RebootType rebootType ) : bool
serverId string
rebootType RebootType
return bool
        public bool RestartServer(string serverId, RebootType rebootType)
        {
            return ServersProvider.RebootServer(serverId, rebootType ?? RebootType.Soft, this.DefaultRegion, this.Identity);
        }
OpenStackMember