Class QueryExecutingEventArgs
Represents the arguments for QueryExecutingEvent.
Inheritance
System.Object
System.EventArgs
QueryExecutingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.Manager
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class QueryExecutingEventArgs : EventArgs
Constructors
QueryExecutingEventArgs(String)
Initializes a new instance of the QueryExecutingEventArgs class.
Declaration
public QueryExecutingEventArgs(string mdxQuery)
Parameters
Type | Name | Description |
---|---|---|
System.String | mdxQuery | The MDX query. |
QueryExecutingEventArgs(String, String)
Initializes a new instance of the QueryExecutingEventArgs class.
Declaration
public QueryExecutingEventArgs(string mdxQuery, string executingFunction)
Parameters
Type | Name | Description |
---|---|---|
System.String | mdxQuery | The MDX query. |
System.String | executingFunction | The executing function. |
QueryExecutingEventArgs(String, String, OlapReport)
Initializes a new instance of the QueryExecutingEventArgs class.
Declaration
public QueryExecutingEventArgs(string mdxQuery, string executingFunction, OlapReport report)
Parameters
Type | Name | Description |
---|---|---|
System.String | mdxQuery | The MDX query. |
System.String | executingFunction | The executing function. |
OlapReport | report | The report. |
Properties
Cancel
Gets or sets a value indicating whether this QueryExecutingEventArgs is cancel.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ExecutingFunction
Gets or sets the executing function.
Declaration
public string ExecutingFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String | The executing function. |
MdxQuery
Gets or sets the MDX query.
Declaration
public string MdxQuery { get; set; }
Property Value
Type | Description |
---|---|
System.String | The MDX query. |
Report
Gets or sets the report.
Declaration
public OlapReport Report { get; }
Property Value
Type | Description |
---|---|
OlapReport | The report. |