StoryTeller.Persistence.JsonNode.this C# (CSharp) Method

this() public method

public this ( string attName ) : string
attName string
return 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); }
        }