Aqueduct.Configuration.ReadOnlySettings.TryGetValue C# (CSharp) Method

TryGetValue() public method

public TryGetValue ( string key, Setting &value ) : bool
key string
value Setting
return bool
        public bool TryGetValue (string key, out Setting value)
        {
            return _internalStorage.TryGetValue (key, out value);
        }