// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Net; using MediaBrowser.Common.Configuration; /// /// Defines the . /// public static class NetworkConfigurationExtensions { /// /// Retrieves the network configuration. /// /// The . /// The . public static NetworkConfiguration GetNetworkConfiguration(this IConfigurationManager config) { return config.GetConfiguration(NetworkConfigurationStore.StoreKey); } }