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

GetAttribute() private method

private GetAttribute ( string key ) : string
key string
return string
        public string GetAttribute(string key)
        {
            if (Attributes_Renamed == null)
            {
                return null;
            }
            else
            {
                return Attributes_Renamed[key];
            }
        }