/// <summary> /// Removes an existing server in the current subscription. /// </summary> /// <param name="proxy"> /// Channel used for communication with Azure's service management APIs. /// </param> /// <param name="subscriptionId"> /// The subscription id which contains the server. /// </param> /// <param name="serverName"> /// The name of the server to remove. /// </param> public static void RemoveServer(this ISqlDatabaseManagement proxy, string subscriptionId, string serverName) { proxy.EndRemoveServer(proxy.BeginRemoveServer(subscriptionId, serverName, null, null)); }