Axiom.Core.RegionSceneQuery.Execute C# (CSharp) Метод

Execute() публичный Метод

Executes the query, returning the results back in one list.
This method executes the scene query as configured, gathers the results into one structure and returns a reference to that structure. These results will also persist in this query object until the next query is executed, or ClearResults is called. An more lightweight version of this method that returns results through a listener is also available.
public Execute ( ) : SceneQueryResult
Результат SceneQueryResult
		public virtual SceneQueryResult Execute()
		{
			ClearResults();

			// invoke callback method with ourself as the listener
			Execute( this );

			return lastResult;
		}

Same methods

RegionSceneQuery::Execute ( ISceneQueryListener listener ) : void