/// <summary>
 /// Gets the specified subnet.
 /// </summary>
 /// <param name="networkingService">The networking service.</param>
 /// <param name="subnetId">The subnet identifier.</param>
 /// <returns>
 /// The subnet associated with the specified identifier.
 /// </returns>
 public static Subnet GetSubnet(this NetworkingService networkingService, Identifier subnetId)
 {
     return(networkingService.GetSubnetAsync(subnetId).ForceSynchronous());
 }