Builderdash.Configuration.MasterConfiguration.GetMasterServer C# (CSharp) Method

GetMasterServer() public method

public GetMasterServer ( string name ) : ServerConfiguration
name string
return ServerConfiguration
        public ServerConfiguration GetMasterServer(string name)
        {
            return MasterServers.FirstOrDefault(s => s.Name.Equals(name, StringComparison.OrdinalIgnoreCase));
        }