ConoHaNet.OpenStackMember.DetachSecurityGroup C# (CSharp) Méthode

DetachSecurityGroup() private méthode

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