Akka.Configuration.Hocon.HoconObject.GetKey C# (CSharp) Méthode

GetKey() public méthode

Retrieves the value associated with the supplied key.
public GetKey ( string key ) : HoconValue
key string The key associated with the value to retrieve.
Résultat HoconValue
        public HoconValue GetKey(string key)
        {
            if (Items.ContainsKey(key))
            {
                return Items[key];
            }
            return null;
        }