AmazedSaint.Elastic.Lib.ElasticObject.AddAttribute C# (CSharp) Method

AddAttribute() public method

public AddAttribute ( string key, ElasticObject value ) : void
key string
value ElasticObject
return void
        public void AddAttribute(string key, ElasticObject value)
        {
            value.nodeType = NodeType.Attribute;
            value.InternalParent = this;
            elasticProvider.AddAttribute(key, value);
        }

Same methods

ElasticObject::AddAttribute ( string memberName, object value ) : void