Bamboo.Prevalence.Indexing.FullText.Postings.Postings C# (CSharp) 메소드

Postings() 공개 메소드

Creates a new Postings object for a term.
public Postings ( string term ) : System
term string the term
리턴 System
		public Postings(string term)
		{
			_term = term;
			_postings = new Hashtable();
		}