StoryTeller.Persistence.JsonNode.this C# (CSharp) Méthode

this() public méthode

public this ( string attName ) : string
attName string
Résultat string
        public string this[string attName]
        {
            get
            {
                JToken property = _object[attName];
                return property == null ? string.Empty : property.Value<string>();
            }
            set { _object[attName] = new JValue(value); }
        }