Gets and sets the name of the current Statement.

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

Syntax

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

Field Value

The name of the current Statement. If no name has been set, the getting version returns null.

Remarks

The name of the Statement must be non-null for the Statement to be syntactically valid.

Once the query is sent to the MDEX Engine and a response is returned, the Statement name must be used as the parameter to the GetAnalyticsStatementResult(String) method to obtain an AnalyticsStatementResult containing the records associated with the Statement.

See Also