| 12345678910111213141516171819202122 | 
							- 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()
 
-         };
 
-     }
 
- }
 
 
  |