Lucene.Net.Index.SegmentInfo.PutAttribute C# (CSharp) Method

PutAttribute() private method

private PutAttribute ( string key, string value ) : string
key string
value string
return string
        public string PutAttribute(string key, string value)
        {
            if (Attributes_Renamed == null)
            {
                Attributes_Renamed = new Dictionary<string, string>();
            }
            return Attributes_Renamed[key] = value;
        }