/// <summary>
 /// Gets the specified port.
 /// </summary>
 /// <param name="networkingService">The networking service.</param>
 /// <param name="portId">The port identifier.</param>
 /// <returns>
 /// The port associated with the specified identifier.
 /// </returns>
 public static Port GetPort(this NetworkingService networkingService, Identifier portId)
 {
     return(networkingService.GetPortAsync(portId).ForceSynchronous());
 }