Bamboo.Prevalence.Indexing.Records.HashtableRecord.this C# (CSharp) Method

this() public method

Sets/Gets a hashtable field.
public this ( string name ) : object
name string
return object
		public object this[string name]
		{
			get
			{
				return _hashtable[name];
			}

			set
			{
				_hashtable[name] = value;
			}
		}