23 lines
577 B
C#
23 lines
577 B
C#
|
using System.Collections.Generic;
|
||
|
using MediaBrowser.Common.Configuration;
|
||
|
|
||
|
namespace MediaBrowser.Common.Net;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Defines the <see cref="NetworkConfigurationFactory" />.
|
||
|
/// </summary>
|
||
|
public class NetworkConfigurationFactory : IConfigurationFactory
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The GetConfigurations.
|
||
|
/// </summary>
|
||
|
/// <returns>The <see cref="IEnumerable{ConfigurationStore}"/>.</returns>
|
||
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
||
|
{
|
||
|
return new[]
|
||
|
{
|
||
|
new NetworkConfigurationStore()
|
||
|
};
|
||
|
}
|
||
|
}
|