Ejemplo n.º 1
0
 /// <summary>
 /// Creates a <see cref="SteamConfiguration"/> object.
 /// </summary>
 public SteamConfiguration()
 {
     serverListProvider = new NullServerListProvider();
     webAPIBaseAddress  = WebAPI.DefaultBaseAddress;
     ServerList         = new SmartCMServerList(this);
 }
Ejemplo n.º 2
0
 public SmartCMServerListFacts()
 {
     serverList = new SmartCMServerList();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Do not use directly - create a SteamConfiguration object by using a builder or helper method.
 /// </summary>
 internal SteamConfiguration(SteamConfigurationState state)
 {
     this.state = state;
     ServerList = new SmartCMServerList(this);
 }