ConoHaNet.OpenStackMember.DetachSecurityGroup C# (CSharp) Method

DetachSecurityGroup() private method

private DetachSecurityGroup ( string serverId, string groupName ) : bool
serverId string
groupName string
return bool
        public bool DetachSecurityGroup(string serverId, string groupName)
        {
            return ServersProvider.RemoveSecurityGroup(serverId, groupName, this.DefaultRegion, this.Identity);
        }
OpenStackMember