コード例 #1
0
 /// <summary>
 /// Removes a new firewall rule on the specified server.
 /// </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 containing the firewall rule.
 /// </param>
 /// <param name="ruleName">
 /// The name of the firewall rule to remove.
 /// </param>
 public static void RemoveServerFirewallRule(this ISqlDatabaseManagement proxy, string subscriptionId, string serverName, string ruleName)
 {
     proxy.EndRemoveServerFirewallRule(proxy.BeginRemoveServerFirewallRule(subscriptionId, serverName, ruleName, null, null));
 }