ConoHaNet.OpenStackMember.AttachSecurityGroup C# (CSharp) Method

AttachSecurityGroup() private method

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