You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
707 B
21 lines
707 B
4 years ago
|
using MediaBrowser.Common.Configuration;
|
||
|
|
||
|
namespace Jellyfin.Networking.Configuration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Defines the <see cref="NetworkConfigurationExtensions" />.
|
||
|
/// </summary>
|
||
|
public static class NetworkConfigurationExtensions
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Retrieves the network configuration.
|
||
|
/// </summary>
|
||
|
/// <param name="config">The <see cref="IConfigurationManager"/>.</param>
|
||
|
/// <returns>The <see cref="NetworkConfiguration"/>.</returns>
|
||
|
public static NetworkConfiguration GetNetworkConfiguration(this IConfigurationManager config)
|
||
|
{
|
||
|
return config.GetConfiguration<NetworkConfiguration>("network");
|
||
|
}
|
||
|
}
|
||
|
}
|