/// <summary>
 /// Gets the specified network.
 /// </summary>
 /// <param name="networkingService">The networking service.</param>
 /// <param name="networkId">The network identifier.</param>
 /// <returns>
 /// The network associated with the specified identifier.
 /// </returns>
 public static Network GetNetwork(this NetworkingService networkingService, Identifier networkId)
 {
     return(networkingService.GetNetworkAsync(networkId).ForceSynchronous());
 }