Пример #1
0
 protected bool Equals(LevelUpEnvironment other)
 {
     return(string.Equals(_baseUri, other._baseUri, StringComparison.InvariantCultureIgnoreCase));
 }
 public LevelUpUriBuilder(LevelUpEnvironment environment)
 {
     this.SetEnvironment(environment);
 }
 public LevelUpUriBuilder(LevelUpEnvironment environment)
 {
     Environment = environment;
     _uriBuilder = new UriBuilder(environment.ToString());
 }
 public LevelUpUriBuilder SetEnvironment(LevelUpEnvironment environment)
 {
     Environment = environment;
     _uriBuilder = new UriBuilder(environment.ToString());
     return(this);
 }