SIL.FieldWorks.Common.Controls.SearchEngine.SearchAsync C# (CSharp) Method

SearchAsync() public method

Searches the specified fields asynchronously.
public SearchAsync ( IEnumerable fields ) : void
fields IEnumerable
return void
		public void SearchAsync(IEnumerable<SearchField> fields)
		{
			m_thread.EnqueueWork(fields.ToArray());
		}

Usage Example

Example #1
0
 /// <summary>
 /// Searches the specified fields asynchronously.
 /// </summary>
 public void SearchAsync(IEnumerable <SearchField> fields)
 {
     // Start the search
     m_searchEngine.SearchAsync(fields);
 }