ConoHaNet.OpenStackMember.DeleteVIP C# (CSharp) Method

DeleteVIP() public method

public DeleteVIP ( string vipId ) : bool
vipId string
return bool
        public bool DeleteVIP(string vipId)
        {
            return NetworksProvider.DeleteVIP(vipId, this.DefaultRegion, this.Identity);
        }

Usage Example

 public void DeleteVIPTest()
 {
     string vipId = string.Empty;
     var os = new OpenStackMember(UserName, Password, TenantName, TenantId);
     bool b = os.DeleteVIP(vipId);
     Assert.IsTrue(b);
 }
OpenStackMember