Lucene.Net.Demo.Html.HTMLParser.GetMetaTags C# (CSharp) Method

GetMetaTags() public method

public GetMetaTags ( ) : System.Collections.Specialized.NameValueCollection
return System.Collections.Specialized.NameValueCollection
		public virtual System.Collections.Specialized.NameValueCollection GetMetaTags()
		{
			if (pipeIn == null)
				GetReader(); // spawn parsing thread
			while (true)
			{
				lock (this)
				{
					if (titleComplete || pipeInStream.Full())
						break;
					System.Threading.Monitor.Wait(this, TimeSpan.FromMilliseconds(10));
				}
			}
			return metaTags;
		}