Gets and sets the AnalyticsQuery instance that represents the Analytics query that will be sent to the MDEX Engine. On set, if the query is malformed, it will not be set on the HttpENEConnection and a SyntaxException is thrown. An AnalyticsQuery instance can be built programmatically or by calling the parseQuery(String) method.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public virtual AnalyticsQuery AnalyticsQuery { get; set; }
Visual Basic
Public Overridable Property AnalyticsQuery As AnalyticsQuery
	Get
	Set
Visual C++
public:
virtual property AnalyticsQuery^ AnalyticsQuery {
	AnalyticsQuery^ get ();
	void set (AnalyticsQuery^ value);
}

Field Value

The Analytics query to run.

See Also