/// <summary>
 /// Deletes the specified subnet.
 /// </summary>
 /// <param name="networkingService">The networking service.</param>
 /// <param name="subnetId">The subnet identifier.</param>
 public static void DeleteSubnet(this NetworkingService networkingService, Identifier subnetId)
 {
     networkingService.DeleteSubnetAsync(subnetId).ForceSynchronous();
 }