Qlik.Engine.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Qlik.Engine</name>
    </assembly>
    <members>
        <member name="T:Qlik.Engine.AbstractStructure">
            <summary>
            Abstract structure that can be concretized into any specific object.
            </summary>
            <summary />
        </member>
        <member name="P:Qlik.Engine.AbstractStructure.Session">
            <summary>
            The session from which this structure was created.
            </summary>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.PrintStructure(Newtonsoft.Json.Formatting)">
            <summary>
            Creates a string representation of the underlying json structure.
            </summary>
            <param name="formatting">Formatting of the string.</param>
            <returns>The string representation of the underlying json structure.</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.#ctor">
            <summary>
            Creates an abstract structure that can be concretized into any specific object.
            </summary>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.As``1">
            <summary>
            Interprets abstract structure as a different type.
            </summary>
            <typeparam name="T">The target type</typeparam>
            <returns>The object interpreted as instance of T.</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.CloneAs``1">
            <summary>
            Clones object to another AbstractStructure type.
            </summary>
            <typeparam name="T">The target type</typeparam>
            <returns>The clone</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.Get``1(System.String)">
            <summary>
            Retrieves a property of the abstract structure and inteprets it as an object of type <see cref="!:T"/>.
            </summary>
            <param name="propertyName">Name of property</param>
            <typeparam name="T">The expected type of the property object.</typeparam>
            <returns>Property structure deserialized as type T.</returns>
            <exception cref="T:Qlik.Engine.InvalidPropertyAccessException">Thrown if the property has previously been interpreted as a type incompatible to T.</exception>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.Get``1(System.String,``0)">
            <summary>
            Retrieves an element of the abstract structure and interprets it as an object of type T.
            </summary>
            <param name="propertyName">Name of property.</param>
            <param name="defaultValue">Default value for property if not set in structure.</param>
            <typeparam name="T">The expected type of the property object.</typeparam>
            <returns>Property structure deserialized as type T.</returns>
            <exception cref="T:Qlik.Engine.InvalidPropertyAccessException">Thrown if the property has previously been interpreted as a type incompatible to T.</exception>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.Add``1(``0)">
            <summary>
            Adds an element to the abstract structure
            </summary>
            <param name="value">the value to add</param>
            <typeparam name="T">the type of the element</typeparam>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.Set``1(System.String,``0)">
            <summary>
            Sets a property in the abstract structure
            </summary>
            <param name="propertyName">Name of property.</param>
            <param name="value">The value to set.</param>
            <typeparam name="T">The type of the element.</typeparam>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.IsSet(System.String)">
            <summary>
            Checks if a property is set
            </summary>
            <param name="propertyName">The name of the property</param>
            <returns>True if the property is set</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.GetAllProperties(System.Boolean)">
            <summary>
            Gets all the property names in the structure
            </summary>
            <param name="recursive">If false, only return top level properties. If true, traverse entire structure and return all sub properties as well.</param>
            <returns>All the property names</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.GetAllPropertyPaths(System.Boolean)">
            <summary>
            Gets the path to all properties names in the structure
            </summary>
            <param name="recursive">If false, only return top level properties. If true, traverse entire structure and return all sub properties as well.</param>
            <returns>All the property paths</returns>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.CloneSubstructureAs``1(System.String)">
            <summary>
            Clones a substructure of the abstract structure and interprets it as type T.
            </summary>
            <param name="path">The qix path to the property to retrieve.</param>
            <returns>The interpreted sub structure, or the default value of the type T if the path can not be found.</returns>
            <typeparam name="T">The expected type of the property object.</typeparam>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.WriteJson(Newtonsoft.Json.JsonWriter)">
            <summary>
            Writes the full json structure of the object to the argument writer.
            </summary>
            <param name="writer">The target writer.</param>
        </member>
        <member name="M:Qlik.Engine.AbstractStructure.ReadJson(Newtonsoft.Json.JsonReader,Qlik.Engine.Communication.QlikConnection)">
            <summary>
            Reads the structure of the object from the argument reader.
            </summary>
            <param name="reader">The source reader.</param>
            <param name="session">The session from which the structure is created.</param>
        </member>
        <member name="T:Qlik.Engine.AppIdentifier">
            <summary>
            Token to identify an unique Qlik Sense app
            </summary>
        </member>
        <member name="M:Qlik.Engine.AppIdentifier.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.AppName">
            <summary>
            The human-readable name of the app
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.AppId">
            <summary>
            The machine-readable id of the app
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.ConnectedUsers">
            <summary>
            Number of connected users
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.FileTime">
            <summary>
            The application filetime
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.FileSize">
            <summary>
            The application filesize on disk
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.Meta">
            <summary>
            Meta information about the application
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.LastReloadTime">
            <summary>
            Last reloaded time
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.Title">
            <summary>
            Titel for the application
            </summary>
        </member>
        <member name="P:Qlik.Engine.AppIdentifier.Thumbnail">
            <summary>
            Thumbnail for the application
            </summary>
        </member>
        <member name="T:Qlik.Engine.AsyncHandle">
            <summary>
            User created handle to asynchronous method request
            </summary>
        </member>
        <member name="M:Qlik.Engine.AsyncHandle.#ctor(System.String)">
            <summary>
            Create a reusable handle to asynchronous method request
            </summary>
            <param name="handle">unique string value</param>
        </member>
        <member name="T:Qlik.Engine.Communication.CommunicationErrorEventArgs">
            <summary>
            Communication error received during connection to an Qlik Sense instance
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.CommunicationErrorEventArgs.#ctor(System.Exception)">
            <summary>
            Creates a new instance with the thrown Exception
            </summary>
            <param name="exception">The exception</param>
        </member>
        <member name="T:Qlik.Engine.Communication.CommunicationErrorException">
            <summary>
            Exception thrown when an attempt to open a websocket connection fails.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.CommunicationErrorException.#ctor">
            <summary>
            Initializes a new instance of the CommunicationErrorException class.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.CommunicationErrorException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the CommunicationErrorException class
            with a specified error message.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.CommunicationErrorException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the CommunicationErrorException class
            with a specified error message and a reference to the inner exception
            that is the cause of this exception.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
            <param name="innerException">The exception that is the cause of the current exception.
            Null refence if no inner exception is specified.</param>
        </member>
        <member name="T:Qlik.Engine.Communication.Converters.AbstractStructureConverter">
            <summary>
            Class for dynamic handling of json data.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.AbstractStructureConverter.#ctor(Qlik.Engine.Communication.QlikConnection)">
            <summary>
            Constructor
            </summary>
            <param name="session">The communication object</param>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.AbstractStructureConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Writes the JSON representation of the object.
            </summary>
            <param name="writer">The JsonWriter to write to.</param>
            <param name="value">The value.</param>
            <param name="serializer">The calling serializer.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.AbstractStructureConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Reads the JSON representation of the object.
            </summary>
            <param name="reader">The JsonReader to read from.</param>
            <param name="objectType">Type of the object.</param>
            <param name="existingValue">The existing value of object being read.</param>
            <param name="serializer">The calling serializer.</param>
            <returns>The object value.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.AbstractStructureConverter.CanConvert(System.Type)">
            <summary>
            Determines whether this instance can convert the specified object type.
            </summary>
            <param name="objectType">Type of the object.</param>
            <returns>
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:Qlik.Engine.Communication.Converters.QixEnumConverter">
            <summary>
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.QixEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Writes the JSON representation of the object.
            </summary>
            <param name="writer">The JsonWriter to write to.</param>
            <param name="value">The value.</param>
            <param name="serializer">The calling serializer.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.Converters.QixEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Reads the JSON representation of the object.
            </summary>
            <param name="reader">The JsonReader to read from.</param>
            <param name="objectType">Type of the object.</param>
            <param name="existingValue">The existing value of object being read.</param>
            <param name="serializer">The calling serializer.</param>
            <returns>The object value.</returns>
        </member>
        <member name="T:Qlik.Engine.Communication.DebugConsole">
            <summary>
            This is a convenience class for setting monitoring communication activity on the protocol level.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.DebugConsole.#ctor">
            <summary>
            Default constructor using <see cref="P:System.Console.Out"/> for output.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.DebugConsole.#ctor(System.IO.TextWriter)">
            <summary>
            Constructor accepting <see cref="T:System.IO.TextWriter"/> for output.
            </summary>
            <param name="writer">Used to redirect log output.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.DebugConsole.#ctor(System.IO.TextWriter[])">
            <summary>
            Constructor accepting multiple <see cref="T:System.IO.TextWriter"/> objects for output.
            </summary>
            <param name="writers">Used to redirect log output.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.DebugConsole.WriteLine(System.String)">
            <summary>
            Write a line to all TextWriter instances registered for the debug console.
            </summary>
            <param name="text">The text to write.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.DebugConsole.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <filterpriority>2</filterpriority>
        </member>
        <member name="T:Qlik.Engine.Communication.IO.Request">
            <summary>
            The asynchronous request rpc message sent to a Qlik Sense server
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Request.#ctor(Qlik.Engine.AsyncHandle,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String},System.Object[])">
            <summary>
            <para>Creates a request with a specified user handle that can be used to monitor the progress of the request.</para>
            <seealso cref="M:Qlik.Engine.Hub.GetProgressAsync(Qlik.Engine.AsyncHandle)"/>
            </summary>
            <param name="asyncHandle">A string handle allowing the user to access request status.</param>
            <param name="wsHandle">A unique ID for the request.</param>
            <param name="wsMethod">The name of the server method to call.</param>
            <param name="argumentNames">Positional argument names for the method</param>
            <param name="arguments">The set of arguments for the method.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Request.#ctor(System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String},System.Object[])">
            <summary>
            Creates a request object.
            </summary>
            <param name="wsHandle">A unique ID for the request.</param>
            <param name="wsMethod">The name of the server method to call.</param>
            <param name="argumentNames">Positional argument names for the method</param>
            <param name="arguments">The set of arguments for the method.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Request.#ctor(System.Int32,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Collections.Generic.IEnumerable{System.String},System.Object[])">
            <summary>
            Creates a request object.
            </summary>
            <param name="wsHandle">A unique ID for the request.</param>
            <param name="wsMethod">The name of the server method to call.</param>
            <param name="wsDelta">If true, the server will return only the delta between this and the last delta request to the same method.</param>
            <param name="wsCont">DEPRECATED</param>
            <param name="argumentNames">Positional argument names for the method</param>
            <param name="arguments">The set of arguments for the method.</param>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Request.AddHeader(System.String,System.Object)">
            <summary>
            Method for adding JSON RPC headers to a Request object
            </summary>
            <param name="key">Header key that should be added to request</param>
            <param name="value">Header value that should be added to request</param>
        </member>
        <member name="T:Qlik.Engine.Communication.IO.Response">
            <summary>
            Websocket response object
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.Value``1(System.String)">
            <summary>
            Gets custom value from a json response.
            </summary>
            <typeparam name="T">The type to which the json response should be deserialized.</typeparam>
            <param name="name">The property of the response to deserialized.</param>
            <returns>The deserialized value.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.Result``1(System.String)">
            <summary>
            Gets custom result from a json response. Wrapper for <see cref="M:Qlik.Engine.Communication.IO.Response.Value``1(System.String)"/> that assumes
            the property to deserialize is found in the result part of the response.
            </summary>
            <typeparam name="T">The type to which the json response should be deserialized.</typeparam>
            <param name="name">The property of the result entry in the json response to deserialized</param>
            <returns>The deserialized value.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.ValueAsync``1(System.String)">
            <summary>
            Gets custom value from a json response asynchronously.
            </summary>
            <typeparam name="T">The type to which the json response should be deserialized.</typeparam>
            <param name="name">The property of the response to deserialized.</param>
            <returns>A task that resolves the deserialized value.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.ResultAsync``1(System.String)">
            <summary>
            Gets custom result from a json response. Wrapper for <see cref="M:Qlik.Engine.Communication.IO.Response.Value``1(System.String)"/> that assumes
            the property to deserialize is found in the result part of the response asynchronously.
            </summary>
            <typeparam name="T">The type to which the json response should be deserialized.</typeparam>
            <param name="name">The property of the result entry in the json response to deserialized</param>
            <returns>A task that resolves the deserialized value.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.ToString">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <returns>
            A string that represents the current object.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:Qlik.Engine.Communication.IO.Response.ToString(Newtonsoft.Json.Formatting)">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <param name="formatting">Formatting options</param>
            <returns>Returns a string that represents the current object.</returns>
        </member>
        <member name="T:Qlik.Engine.Communication.IQlikConnection">
            <summary>
            QlikConnection is responsible for handling the communication with a Qlik Sense instance
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.IQlikConnection.SendAsync(System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String},System.Object[])">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance
            </summary>
            <param name="wsHandle">Handle to a specific Qlik Sense entity instance</param>
            <param name="wsMethod">Method name</param>
            <param name="argumentNames">Positional argument names for the method</param>
            <param name="arguments">Arguments for method</param>
            <returns>A Task with default unhandled Response instance</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IQlikConnection.SendAsync(Qlik.Engine.Communication.IO.Request)">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance
            </summary>
            <param name="request">Request to send</param>
            <returns>A Task without deserialized response</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.IQlikConnection.SendAsync``1(Qlik.Engine.Communication.IO.Request,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance with a specified response handler
            </summary>
            <param name="request">Request to send</param>
            <param name="continueWith">Response handler that is used to change the Response object into an instance of T</param>
            <typeparam name="T">Dynamic type that should be returned</typeparam>
            <returns>Task that will resolve into a handled instance of T</returns>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.CancellationToken">
            <summary>
            The token used to synchronize shutdown events with all outstanding tasks
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.Hub">
            <summary>
            The active Hub
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.App">
            <summary>
            The active App if any
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.SessionToken">
            <summary>
            The session metadata token used for identifying the currently used connection
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.ServerUri">
            <summary>
            The Uri used to connect to the Qlik Sense instance
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.IQlikConnection.Session">
            <summary>
            The session metadata used for identifying the currently used connection
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.IQlikConnection.New``1(Newtonsoft.Json.Linq.JObject)">
            <summary>
            Create a new structure bound to this session
            </summary>
            <typeparam name="T">The type of the structure to create</typeparam>
            <param name="structure">initial value</param>
            <returns></returns>
        </member>
        <member name="T:Qlik.Engine.Communication.ObjectsClosedEventArgs">
            <summary>
            Event triggered when an entity is closed/destroyed on the server
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.ObjectsClosedEventArgs.Objects">
            <summary>
            The entities that was closed/destroyed
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.ObjectsClosedEventArgs.#ctor(System.Collections.Generic.IEnumerable{Qlik.Engine.QixClassBase})">
            <summary>
            Creates a new instance with the closed entities
            </summary>
            <param name="objects">The entities that was closed/destroyed</param>
        </member>
        <member name="T:Qlik.Engine.Communication.PushMessageEventArgs">
            <summary>
            EventArgs for a response from the server without specific receiver.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.PushMessageEventArgs.#ctor(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Creates a new instance with the structure specified
            </summary>
            <param name="response">The response object</param>
        </member>
        <member name="T:Qlik.Engine.Communication.PushMessageEventHandler">
            <summary>
            An EventHandler for PushMessages
            </summary>
            <param name="sender">object sender that raised the event</param>
            <param name="e">The data related to the push message</param>
        </member>
        <member name="T:Qlik.Engine.Communication.ObjectsChangedEventArgs">
            <summary>
            Event triggered when an entity is changed on the server
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.ObjectsChangedEventArgs.#ctor(System.Collections.Generic.IEnumerable{Qlik.Engine.QixClassBase})">
            <summary>
            Creates a new instance with the changed entities
            </summary>
            <param name="objects">The entities that was changed</param>
        </member>
        <member name="P:Qlik.Engine.Communication.ObjectsChangedEventArgs.Objects">
            <summary>
            The entities that was changed
            </summary>
        </member>
        <member name="T:Qlik.Engine.Communication.QlikConnection">
            <summary>
            QlikConnection is responsible for handling the communication with a Qlik Sense instance
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.QlikConnection.SessionToken">
            <summary>
            The session metadata token used for identifying the currently used connection
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.QlikConnection.Session">
            <summary>
            The session specification.
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.QlikConnection.ServerUri">
            <summary>
            The Uri used to connect to the Qlik Sense instance
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.MakeInboundSerializer">
            <summary>
            Method for creating the JsonSerializer used to deserialize message received from
            the RPC connection.
            </summary>
            <returns>The JsonSerializer instance.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.MakeOutboundSerializer">
            <summary>
            Method for creating the JsonSerializer used to serialize requests to an
            the RPC connection.
            </summary>
            <returns>The JsonSerializer instance.</returns>
        </member>
        <member name="P:Qlik.Engine.Communication.QlikConnection.Hub">
            <summary>
            The active Hub
            </summary>
        </member>
        <member name="P:Qlik.Engine.Communication.QlikConnection.App">
            <summary>
            The active App if any
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.#ctor(Qlik.Engine.ILocation,Qlik.Engine.ISession)">
            <summary>
            Creates a new connection to a Qlik Sense instance based on a known location and specific session
            </summary>
            <param name="location">The location</param>
            <param name="session">Session information</param>
        </member>
        <member name="E:Qlik.Engine.Communication.QlikConnection.ObjectChangedMessageEvent">
            <summary>
            Event that is fired when a response received on the web socket contains change
            notifications.
            </summary>
        </member>
        <member name="E:Qlik.Engine.Communication.QlikConnection.ObjectClosedMessageEvent">
            <summary>
            Event that is fired when a response received on the web socket contains object
            closed notifications.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.Log(System.String)">
            <summary>
            Method to use when emitting a log message.
            </summary>
            <param name="message">The message to print.</param>
        </member>
        <member name="T:Qlik.Engine.Communication.QlikConnection.PerformanceType">
            <summary>
            Performance log entry types
            </summary>
        </member>
        <member name="F:Qlik.Engine.Communication.QlikConnection.PerformanceType.SocketConnecting">
            <summary>
             
            </summary>
        </member>
        <member name="F:Qlik.Engine.Communication.QlikConnection.PerformanceType.SocketConnected">
            <summary>
             
            </summary>
        </member>
        <member name="F:Qlik.Engine.Communication.QlikConnection.PerformanceType.SocketClosed">
            <summary>
             
            </summary>
        </member>
        <member name="F:Qlik.Engine.Communication.QlikConnection.PerformanceType.MessageReceived">
            <summary>
             
            </summary>
        </member>
        <member name="F:Qlik.Engine.Communication.QlikConnection.PerformanceType.MessageSent">
            <summary>
             
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.New``1(Newtonsoft.Json.Linq.JObject)">
            <summary>
            Create a new structure bound to this session
            </summary>
            <typeparam name="T">The type of the structure to create</typeparam>
            <param name="structure">initial value</param>
            <returns></returns>
        </member>
        <member name="E:Qlik.Engine.Communication.QlikConnection.PushMessage">
            <summary>
            Will catch all responses without registered receiver
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.SendAsync(System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String},System.Object[])">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance
            </summary>
            <param name="wsHandle">Handle to a specific Qlik Sense entity instance</param>
            <param name="wsMethod">Method name</param>
            <param name="argumentNames">Positional argument names for the method</param>
            <param name="arguments">Arguments for method</param>
            <returns>A Task with default unhandled Response instance</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.SendAsync(Qlik.Engine.Communication.IO.Request)">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance
            </summary>
            <param name="request">The request object to send.</param>
            <returns>A task that completes when a response is received for the request.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.SendAsync``1(Qlik.Engine.Communication.IO.Request,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Sends a request asynchronously to a Qlik Sense instance
            </summary>
            <param name="request">The request object to send.</param>
            <param name="continueWith">The continuation method to used when deserializing the response.</param>
            <returns>A task with the continuation method applies to the received response as result.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.AwaitResponse``1(System.Threading.Tasks.Task{``0},System.String,System.Threading.CancellationToken)">
            <summary>
            Await the arrival of a response for a method call to the engine.
            </summary>
            <typeparam name="T">The return type of the method.</typeparam>
            <param name="task">The task returned by a call to SendAsync.</param>
            <param name="methodName">The name of the method that the task corresponds to.</param>
            <param name="cancellationToken">The token used to synchronize shutdown events.</param>
            <exception cref="T:System.TimeoutException">Throws a timeout exception if a response has not been received
            within the current timeout.</exception>
            <returns>The value returned by the task.</returns>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.AwaitResponse(System.Threading.Tasks.Task,System.String,System.Threading.CancellationToken)">
            <summary>
            Await the arrival of a response for a method call to the engine.
            </summary>
            <param name="task">The task returned by a call to SendAsync.</param>
            <param name="methodName">The name of the method that the task corresponds to.</param>
            <param name="cancellationToken">The token used to synchronize shutdown events.</param>
            <exception cref="T:System.TimeoutException">Throws a timeout exception if a response has not been received
            within the current timeout.</exception>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.ValidateVersion">
            <summary>
             
            </summary>
        </member>
        <member name="M:Qlik.Engine.Communication.QlikConnection.Deserialize``1(Newtonsoft.Json.Linq.JToken)">
            <summary>
            Deserialize a token to a specific type.
            </summary>
            <typeparam name="T">The type to deserialize to.</typeparam>
            <param name="token">The Json token to deserialize.</param>
            <returns>The token deserialized as a an object of type T.</returns>
        </member>
        <member name="T:Qlik.Engine.Communication.MethodInvocationErrorEventArgs">
            <summary>
            Contains Method invocation error attributes used to intercept an MethodInvocationException before its thrown
            </summary>
            <remarks>Makes it possible to resend request if needed, this makes it possible to seamless mitigate errors on the fly.</remarks>
        </member>
        <member name="M:Qlik.Engine.Communication.MethodInvocationErrorEventArgs.#ctor(Qlik.Engine.Communication.IQlikConnection,System.Threading.Tasks.TaskCompletionSource{Qlik.Sense.JsonRpc.Response},Qlik.Sense.JsonRpc.Request,Qlik.Engine.MethodInvocationException)">
            <summary>
             
            </summary>
            <param name="session"></param>
            <param name="taskCompletionSource"></param>
            <param name="request"></param>
            <param name="exception"></param>
        </member>
        <member name="P:Qlik.Engine.Communication.MethodInvocationErrorEventArgs.InvocationError">
            <summary>
            The Error received from the Qlik Sense instance.
            </summary>
        </member>
        <member name="T:Qlik.Engine.ICreateChildResult`1">
            <summary>
             
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="P:Qlik.Engine.ICreateChildResult`1.Info">
            <summary>
             
            </summary>
        </member>
        <member name="P:Qlik.Engine.ICreateChildResult`1.Return">
            <summary>
             
            </summary>
        </member>
        <member name="T:Qlik.Engine.CreateChildResult`1">
            <summary>
             
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="P:Qlik.Engine.CreateChildResult`1.Info">
            <summary>
             
            </summary>
        </member>
        <member name="P:Qlik.Engine.CreateChildResult`1.Return">
            <summary>
             
            </summary>
        </member>
        <member name="T:Qlik.Engine.DataPager">
            <summary>
            A class providing a paging interface for a pageable structure.
            </summary>
        </member>
        <member name="E:Qlik.Engine.DataPager.Changed">
            <summary>
            This event fires either when the CurrentPages changes, or the generic object the pager observes notifies a change.
            </summary>
        </member>
        <member name="M:Qlik.Engine.DataPager.OnChanged">
            <summary>
            Invokes the Changed event.
            </summary>
        </member>
        <member name="M:Qlik.Engine.DataPager.#ctor(Qlik.Engine.GenericObject,System.String)">
            <summary>
            Creates an interface for a pageable structure.
            </summary>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(Qlik.Engine.GenericObject,Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data from the pageable structure.
            </summary>
        </member>
        <member name="F:Qlik.Engine.DataPager.DefaultPageWidth">
            <summary>
            The default page width to use if no current page is defined.
            </summary>
        </member>
        <member name="F:Qlik.Engine.DataPager.DefaultPageHeight">
            <summary>
            The default page height to use if no current page is defined.
            </summary>
        </member>
        <member name="F:Qlik.Engine.DataPager.Path">
            <summary>
            The property path to the pageable structure that the data pager provides an interface for.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.CurrentPages">
            <summary>
            The current set of pages.
            </summary>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetData">
            <summary>
            Returns data for <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.
            </summary>
            <returns>The set of data for the <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync">
            <summary>
            Returns data for <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.
            </summary>
            <returns>A task with the set of data for the <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Returns data for <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the set of data for the <see cref="P:Qlik.Engine.DataPager.CurrentPages"/>.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataPages(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages. Does not affect CurrentPages.
            </summary>
            <returns>Data for the provided set of pages.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataPagesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages. Does not affect CurrentPages.
            </summary>
            <returns>A task with the data for the argument pages as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataPagesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages. Does not affect CurrentPages.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the data for the argument pages as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetData(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages, or from CurrentPages if page argument is null. Moves
            CurrentPages to the argument pages.
            </summary>
            <param name="pages">The set of pages from which to return data</param>
            <returns>The set of data for the argument pages.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages, or from CurrentPages if page argument is null. Moves
            CurrentPages to the argument pages.
            </summary>
            <param name="pages">The set of pages from which to return data</param>
            <returns>A task with the set of data for the argument pages as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Returns data for the argument pages, or from CurrentPages if page argument is null. Moves
            CurrentPages to the argument pages.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <param name="pages">The set of pages from which to return data</param>
            <returns>A task with the set of data for the argument pages as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetInitialData">
            <summary>
            Returns data as defined by the InitialDataFetch setting.
            </summary>
            <returns>The initial data, null if InitialDataFetch is not set.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetInitialDataAsync">
            <summary>
            Returns data as defined by the InitialDataFetch setting.
            </summary>
            <returns>A task returning the initial data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetInitialDataAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Returns data as defined by the InitialDataFetch setting.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task returning the initial data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetData(System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> according to transform and returns data from the resulting pages.
            </summary>
            <param name="pageTransform">The transform to apply to CurrentPages.</param>
            <returns>The data</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> according to transform and returns data from the resulting pages.
            </summary>
            <param name="pageTransform">The transform to apply to CurrentPages.</param>
            <returns>A task with the the data as result.</returns>
        </member>
        <member name="P:Qlik.Engine.DataPager.AtEdge">
            <summary>
            Returns true for all pages that are at the edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.AtEdgeTop">
            <summary>
            Returns true for all pages that are at the top edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.AtEdgeLeft">
            <summary>
            Returns true for all pages that are at the left edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.AtEdgeRight">
            <summary>
            Returns true for all pages that are at the right edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.AtEdgeBottom">
            <summary>
            Returns true for all pages that are at the bottom edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.OutsideEdge">
            <summary>
            Returns true for all pages that are completely outside the edge of the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.NumberOfColumns">
            <summary>
            The total number of columns in the data table.
            </summary>
        </member>
        <member name="P:Qlik.Engine.DataPager.NumberOfRows">
            <summary>
            The total number of rows in the data table.
            </summary>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetDataAsync(Qlik.Engine.AsyncHandle,System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> according to transform and returns data from the resulting pages.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <param name="pageTransform">The transform to apply to CurrentPages.</param>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetNextPage">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the next page and returns the data.
            </summary>
            <returns>The data</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetPreviousPage">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the previous page and returns the data.
            </summary>
            <returns>The data</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetFirstPage">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the first page and returns the data.
            </summary>
            <returns>The data</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetLastPage">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the last page and returns the data.
            </summary>
            <returns>The data</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetNextPageAsync">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the next page and returns the data.
            </summary>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetPreviousPageAsync">
            <summary>
            Move <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the previous page and returns the data.
            </summary>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetFirstPageAsync">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the first page and returns the data.
            </summary>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetLastPageAsync">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the last page and returns the data.
            </summary>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetNextPageAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the next page and returns the data.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetPreviousPageAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the previous page and returns the data.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetFirstPageAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the first page and returns the data.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.GetLastPageAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> to the last page and returns the data.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <returns>A task with the data as result.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.IteratePages(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Iterates through pages by repeatedly applying the argument transform and returning the data.
            Application is performed until an iteration moves all pages outside the edge of the table.
            </summary>
            <param name="initialPages">The initial set of pages.</param>
            <param name="pageTransform">The transform to apply during iteration.</param>
            <returns>The set of iteration results.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.IteratePagesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Iterates through pages by repeatedly applying the argument transform and returning the data.
            Application is performed until an iteration moves all pages outside the edge of the table.
            </summary>
            <param name="initialPages">The initial set of pages.</param>
            <param name="pageTransform">The transform to apply during iteration.</param>
            <returns>The set of iteration result tasks.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.IteratePagesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Iterates through pages by repeatedly applying the argument transform and returning the data.
            Application is performed until an iteration moves all pages outside the edge of the table.
            </summary>
            <param name="asyncHandle">The async handle.</param>
            <param name="initialPages">The initial set of pages.</param>
            <param name="pageTransform">The transform to apply during iteration.</param>
            <returns>The set of iteration result tasks.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.MoveCurrentPages(System.Func{System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage}})">
            <summary>
            Moves <see cref="P:Qlik.Engine.DataPager.CurrentPages"/> according to transform without getting data.
            </summary>
            <returns>The new current page set.</returns>
        </member>
        <member name="M:Qlik.Engine.DataPager.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:Qlik.Engine.DataPager.Dispose(System.Boolean)">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <param name="disposing">true if we are disposing</param>
        </member>
        <member name="T:Qlik.Engine.DrawText">
            <summary>
            Constants used in the DrawText (User32) API
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_TOP">
            <summary>
            Top align text
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_LEFT">
            <summary>
            Left align text
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_CENTER">
            <summary>
            Center align text
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_RIGHT">
            <summary>
            Right align text
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_VCENTER">
            <summary>
            Vertical center align text
            </summary>
        </member>
        <member name="F:Qlik.Engine.DrawText.DT_BOTTOM">
            <summary>
            Bottom align text
            </summary>
        </member>
        <member name="T:Qlik.Engine.DynamicStructure">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericObjectList">
            <summary>
             
            </summary>
        </member>
        <member name="T:Qlik.Engine.GenericObjectProperties">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericObjectProperties.GetExtendsObjectAsync">
            <summary>
            Reference to the object that the property ExtendsId refers to.
            Returns null if ExtendsId is not set.
            </summary>
            <returns>A task with extended object result. Result is null if ExtendsId is not set.</returns>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.ExtendsObject">
            <summary>
            Reference to the object that the property ExtendsId refers to.
            Property is null if ExtendsId is not set.
            </summary>
        </member>
        <member name="M:Qlik.Engine.GenericObjectProperties.GetLayoutableDefPathsAsync">
            <summary>
            The paths to the HyperCube/ListObject definitions
            </summary>
            <returns>A task with an array the created object as result</returns>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.LayoutableDefPaths">
            <summary>
            The paths to the HyperCube/ListObject definitions
            </summary>
        </member>
        <member name="M:Qlik.Engine.GenericObjectProperties.GetDefPathList">
            <summary>
            Get the paths to the HyperCube/ListObject definitions
            </summary>
            <returns>The paths to set of qHyperCubeDef and qListObjectDef properties.</returns>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.ExtendsId">
            <summary>Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to).
                            This parameter is mandatory.
                            If you do not want to link your object, set this parameter to an empty string.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectProperties.StateName">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericObjectProperties.#ctor">
            <summary>Creates an instance of the GenericObjectProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericObjectTypeOverrideAttribute">
            <summary>
             
            </summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectTypeOverrideAttribute.TypeName">
            <summary>
             
            </summary>
        </member>
        <member name="M:Qlik.Engine.GenericObjectTypeOverrideAttribute.#ctor(System.String)">
            <summary>
             
            </summary>
            <param name="typeName"></param>
        </member>
        <member name="T:Qlik.Engine.HyperCubePager">
            <summary>
            A class providing a paging interface for a hypercube.
            </summary>
        </member>
        <member name="M:Qlik.Engine.HyperCubePager.#ctor(Qlik.Engine.GenericObject,System.String)">
            <summary>
            Creates a new HyperCubePager.
            </summary>
            <param name="pagerContainer">The generic object containing the hypercube.</param>
            <param name="path">The property path to the hypercube in the properties structure of the generic object.</param>
        </member>
        <member name="M:Qlik.Engine.HyperCubePager.GetDataAsync(Qlik.Engine.GenericObject,Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            The method used for retrieving data from the hypercube.
            </summary>
        </member>
        <member name="T:Qlik.Engine.IAbstractStructure">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAbstractStructure.Session">
            <summary>
            The session from which this structure was created.
            </summary>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.PrintStructure(Newtonsoft.Json.Formatting)">
            <summary>
            Creates a string representation of the underlying json structure.
            </summary>
            <param name="formatting">Formatting of the string.</param>
            <returns>The string representation of the underlying json structure.</returns>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.As``1">
            <summary>
            Interprets abstract structure as a different type.
            </summary>
            <typeparam name="T">The target type</typeparam>
            <returns>The object interpreted as instance of T.</returns>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.CloneAs``1">
            <summary>
            Clones object to another AbstractStructure type.
            </summary>
            <typeparam name="T">The target type</typeparam>
            <returns>The clone</returns>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.CloneSubstructureAs``1(System.String)">
            <summary>
            Clones a substructure of the abstract structure and interprets it as type T.
            </summary>
            <param name="path">The qix path to the property to retrieve.</param>
            <returns>The interpreted sub structure, or the default value of the type T if the path can not be found.</returns>
            <typeparam name="T">The expected type of the property object.</typeparam>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.Get``1(System.String)">
            <summary>
            Retrieves a property of the abstract structure and inteprets it as an object of type T.
            </summary>
            <param name="propertyName">Name of property</param>
            <typeparam name="T">The expected type of the property object.</typeparam>
            <returns>Property structure deserialized as type T.</returns>
            <exception cref="T:Qlik.Engine.InvalidPropertyAccessException">Thrown if the property has previously been interpreted as a type incompatible to T.</exception>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.Get``1(System.String,``0)">
            <summary>
            Retrieves an element of the abstract structure and interprets it as an object of type T.
            </summary>
            <param name="propertyName">Name of property.</param>
            <param name="defaultValue">Default value for property if not set in structure.</param>
            <typeparam name="T">The expected type of the property object.</typeparam>
            <returns>Property structure deserialized as type T.</returns>
            <exception cref="T:Qlik.Engine.InvalidPropertyAccessException">Thrown if the property has previously been interpreted as a type incompatible to T.</exception>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.Set``1(System.String,``0)">
            <summary>
            Sets a property in the abstract structure
            </summary>
            <param name="propertyName">Name of property.</param>
            <param name="value">The value to set.</param>
            <typeparam name="T">The type of the element.</typeparam>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.IsSet(System.String)">
            <summary>
            Checks if a property is set
            </summary>
            <param name="propertyName">The name of the property</param>
            <returns>True if the property is set</returns>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.GetAllProperties(System.Boolean)">
            <summary>
            Gets all the property names in the structure
            </summary>
            <param name="recursive">If false, only return top level properties. If true, traverse entire structure and return all sub properties as well.</param>
            <returns>All the property names</returns>
        </member>
        <member name="M:Qlik.Engine.IAbstractStructure.GetAllPropertyPaths(System.Boolean)">
            <summary>
            Gets the path to all properties names in the structure
            </summary>
            <param name="recursive">If false, only return top level properties. If true, traverse entire structure and return all sub properties as well.</param>
            <returns>All the property paths</returns>
        </member>
        <member name="T:Qlik.Engine.IChangeNotifier">
            <summary>
            Interface used by classes that supports change notification.
            </summary>
        </member>
        <member name="E:Qlik.Engine.IChangeNotifier.Changed">
            <summary>
            This event fires when to notify subscribers that a change has occured.
            </summary>
        </member>
        <member name="T:Qlik.Engine.IGenericObjectList">
            <summary>
             
            </summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectList.Items">
            <summary>
             
            </summary>
        </member>
        <member name="T:Qlik.Engine.InvalidPropertyAccessException">
            <summary>
            Exception indicating that a property in an object instance of a class derived from the AbstractStructure
            class has been accessed twice with incompatible types. Two types are considered compatible in this context
            if they are identical, if the type of the second type cast is a base class of the type of the first
            type class or if they are both subclasses of AbstractStructure.
            </summary>
        </member>
        <member name="M:Qlik.Engine.InvalidPropertyAccessException.#ctor(System.String,System.Type,System.Type)">
            <summary>
            Create a new instance of the exception.
            </summary>
            <param name="propertyName">The name of the property being accessed.</param>
            <param name="oType">The type used for accessing the property.</param>
            <param name="tType">The type previously used for accessing the property.</param>
        </member>
        <member name="T:Qlik.Engine.IPropertyContainer">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPropertyContainer.Properties">
            <summary>
            Property for accessing properties structure.
            </summary>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetProperties">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <returns>The properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetPropertiesAsync">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <returns>A task whos result is the properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <returns>A task whos result is the properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <typeparam name="T">The type to which the properties should be deserialized.</typeparam>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function to deserialize result to target type.</param>
            <returns>A task whos result is the properties structure deserialized to the type T.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetLayout">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <returns>The layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetLayoutAsync">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <returns>A task whos result is the layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <returns>A task whos result is the layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.GetLayoutAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <typeparam name="T">The type to which the properties should be deserialized.</typeparam>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function to deserialize result to target type.</param>
            <returns>A task whos result is the layout structure deserialized to the type T.</returns>
        </member>
        <member name="P:Qlik.Engine.IPropertyContainer.SuspendedLayout">
            <summary>
            Stops incoming changes from altering the object, resumes normal behavior after disposed.
            </summary>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.SuspendLayout">
            <summary>
            Suspend layout updates. The OnChanged callback will not be executed while layout is suspended.
            </summary>
        </member>
        <member name="M:Qlik.Engine.IPropertyContainer.ResumeLayout">
            <summary>
            Resume layout updates. The OnChanged callback will not be executed while layout is suspended.
            </summary>
        </member>
        <member name="T:Qlik.Engine.IQixClassBase">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IQixClassBase.Handle">
            <summary>
            The handle of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.IQixClassBase.Type">
            <summary>
            The type of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.IQixClassBase.Id">
            <summary>
            The request id of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.IQixClassBase.ConsiderDirty">
            <summary>
            Forces send of GetProperties and GetLayout calls to engine for this object even when the layout and properties are up to date.
            </summary>
        </member>
        <member name="P:Qlik.Engine.IQixClassBase.ConsideredDirty">
            <summary>
            Forces send of GetProperties and GetLayout calls to engine for this object even when the layout and properties are up to date.
            Resume normal behavior when disposed.
            </summary>
        </member>
        <member name="E:Qlik.Engine.IQixClassBase.Closed">
            <summary>
            This event fires when the Qlik Sense entity has been removed or deleted.
            </summary>
        </member>
        <member name="T:Qlik.Engine.ListObjectPager">
            <summary>
            A class providing a paging interface for a list object.
            </summary>
        </member>
        <member name="M:Qlik.Engine.ListObjectPager.#ctor(Qlik.Engine.GenericObject,System.String)">
            <summary>
            Creates a new ListObjectPager.
            </summary>
            <param name="pagerContainer">The generic object containing the list object.</param>
            <param name="path">The property path to the list object in the properties structure of the generic object.</param>
        </member>
        <member name="M:Qlik.Engine.ListObjectPager.GetDataAsync(Qlik.Engine.GenericObject,Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            The method used for retrieving data from the list object.
            </summary>
        </member>
        <member name="T:Qlik.Engine.LocationExtensions">
            <summary>
            Some locations need to be accessed in a specific way, the default is using NTML Authentication
            to connect against a server installation and will not require any specific setup
            </summary>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.SessionCookie(Qlik.Engine.ILocation)">
            <summary>
            Gets the session value cookie of the Qlik Sense instance.
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <returns>The value of the cookie</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsDirectConnection(Qlik.Engine.ILocation,System.String,System.String,System.Boolean,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
            <summary>
            Defining the location as a direct connection to Qlik Sense using a specific user
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="userDirectory">User directory name</param>
            <param name="userId">User id</param>
            <param name="extendedSecurityEnvironment">Indicates if extendedSecurityEnvironment is enabled</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
            <param name="certificateCollection">Collection of certificates to use when connecting</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsDirectConnection(Qlik.Engine.ILocation,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
            <summary>
            Defining the location as a direct connection to Qlik Sense using a specific user, proxy session and proxy package
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="userDirectory">User directory name</param>
            <param name="userId">User id</param>
            <param name="proxySessionId">Id of proxy session</param>
            <param name="proxyPackageId">Id of proxy package</param>
            <param name="extendedSecurityEnvironment">Indicates if extendedSecurityEnvironment is enabled</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
            <param name="certificateCollection">Collection of certificates to use when connecting</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsAnonymousUserViaProxy(Qlik.Engine.ILocation,System.Boolean,System.Boolean)">
            <summary>
            Defining the location as a connection to Qlik Sense as an anonymous user
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="proxyUsesSsl">Indicates if proxy uses SSL</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsExistingSessionViaProxy(Qlik.Engine.ILocation,System.String,System.String,System.Boolean,System.Boolean)">
            <summary>
            Defining the location as a connection to Qlik Sense using an existing session
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="sessionId">The sessionId</param>
            <param name="cookieHeaderName">The name of the cookie specified in the QMC</param>
            <param name="proxyUsesSsl">Indicates if proxy uses SSL</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsNtlmUserViaProxy(Qlik.Engine.ILocation,System.Boolean,System.Net.NetworkCredential,System.Boolean)">
            <summary>
            Defining the location as a connection to Qlik Sense using NTLM Authentication
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="proxyUsesSsl">Indicates if proxy uses SSL</param>
            <param name="loginCredentials">Authentication with custom credentials</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsStaticHeaderUserViaProxy(Qlik.Engine.ILocation,System.String,System.String,System.Boolean,System.Boolean)">
            <summary>
            Defining the location as a connection to Qlik Sense using a specific user
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="headerUserId">User id</param>
            <param name="headerAuthenticationHeaderName">Authentication header name need to be specified if different from default. See settings in the management console</param>
            <param name="proxyUsesSsl">Indicates if proxy uses SSL</param>
            <param name="certificateValidation">Indicates if invalid ceritficates should be ignored</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AsDirectConnectionToPersonalEdition(Qlik.Engine.ILocation)">
            <summary>
             Defining the location as a direct connection to Qlik Sense Personal
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppWithId(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Connect to a Qlik Sense app with the app id
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appId">App identification</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IAppIdentifier</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppWithIdOrDefault(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Connect to a Qlik Sense app with the app id
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appId">App identification</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IAppIdentifier or default if no such app is found.</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.HasAppWithId(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Check if location has app with id
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appId">App identification</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>True if location has an app with id</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppWithNameOrDefault(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Connect to a Qlik Sense app with the name.
            If you connect to a server, you can have multiple apps with the same name. On desktop you can only have one app with a specific name.
            If you have multiple apps with the same name on the server this method will return the first app in the list. If you would like to get all
            the apps with a specific name please use the method AppsWithNameOrDefault.
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appName">Application name</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IAppIdentifier or default if no such app is found.</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppsWithNameOrDefault(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Connect to a Qlik Sense app with the name, and return a list of apps.
            If you connect to a server, you can have multiple apps with the same name. On desktop you can only have one app with a specific name.
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appName">Application name</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>An IEnumerable of IAppIdentifiers or default if no app with that name found</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppWithNameOrCreate(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Connect to a Qlik Sense app with the name or create it if it does not exists
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appName">Application name</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IAppIdentifier</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.HasAppWithName(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Checks if there is an application with a specific name
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appName">Application name</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>True if exists</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.Delete(Qlik.Engine.ILocation,Qlik.Engine.IAppIdentifier,System.Nullable{System.Boolean})">
            <summary>
            Deletes the application
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appIdentifier">Token to identify an unique app</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>True if deleted</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.GetAppIdentifiers(Qlik.Engine.ILocation,System.Nullable{System.Boolean})">
            <summary>
            Get a list of app identifiers
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>List of IAppIdentifiers</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.GetAppIdentifiersAsync(Qlik.Engine.ILocation,System.Nullable{System.Boolean})">
            <summary>
            Get a list of app identifiers
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>Returns a task, the result contains a list of IAppIdentifiers</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.IsAlive(Qlik.Engine.ILocation,System.Nullable{System.Boolean})">
            <summary>
            Checks if the connection is alive
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>True if connection is alive</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.CreateAppWithName(Qlik.Engine.ILocation,System.String,System.Nullable{System.Boolean})">
            <summary>
            Create an application with given name
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appName">Application name</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IAppIdentifier, token to identify an unique app</returns>
            <exception cref="T:Qlik.Engine.MethodInvocationException"></exception>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.Hub(Qlik.Engine.ILocation,Qlik.Engine.ISession,System.Nullable{System.Boolean})">
            <summary>
            Connect to the Qlik Sense hub
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>IHub</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.HubAsync(Qlik.Engine.ILocation,Qlik.Engine.ISession,System.Nullable{System.Boolean})">
            <summary>
            Connect to the Qlik Sense hub
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <returns>Returns a task, the result contains the IHub</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.App(Qlik.Engine.ILocation,Qlik.Engine.IAppIdentifier,Qlik.Engine.ISession,System.Nullable{System.Boolean},System.Boolean)">
            <summary>
            Connect to a Qlik Sense app
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appIdentifier">Token to identify an unique app</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <param name="noData">Open the app without data</param>
            <returns>IApp</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.AppAsync(Qlik.Engine.ILocation,Qlik.Engine.IAppIdentifier,Qlik.Engine.ISession,System.Nullable{System.Boolean},System.Boolean)">
            <summary>
            Connect to a Qlik Sense app
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appIdentifier">Token to identify an unique app</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <param name="noVersionCheck">Disable the SDK / Engine version check. Overrides location setting when not null.</param>
            <param name="noData">Open the app without data</param>
            <returns>Returns a task, the result contains the IApp</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.ActiveApp(Qlik.Engine.ILocation,Qlik.Engine.IAppIdentifier,Qlik.Engine.ISession)">
            <summary>
            Connect to an already active Qlik Sense app
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appIdentifier">Token to identify an unique app</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <returns>IApp</returns>
        </member>
        <member name="M:Qlik.Engine.LocationExtensions.ActiveAppAsync(Qlik.Engine.ILocation,Qlik.Engine.IAppIdentifier,Qlik.Engine.ISession)">
            <summary>
            Connect to an already active Qlik Sense app
            </summary>
            <param name="location">Location object of the Qlik Sense instance</param>
            <param name="appIdentifier">Token to identify an unique app</param>
            <param name="session">Defines a specific app session, that can be connected to.</param>
            <returns>Returns a task, the result contains the IApp</returns>
        </member>
        <member name="T:Qlik.Engine.App">
            <summary>
            App / Doc class
            </summary>
            <summary>This class describes all the methods that apply at app level.</summary>
        </member>
        <member name="M:Qlik.Engine.App.GetGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="E:Qlik.Engine.App.MethodInvocationError">
            <summary>
            This event is triggered when a method invocation error occurs.
            </summary>
        </member>
        <member name="E:Qlik.Engine.App.CommunicationError">
            <summary>
            This event is triggered when an communication error occurs.
            </summary>
        </member>
        <member name="E:Qlik.Engine.App.CommunicationErrorEvent">
            <summary>
            This event is triggered when an communication error occurs.
            </summary>
        </member>
        <member name="M:Qlik.Engine.App.GetObject``1(System.String)">
            <summary>
            Get an object
            </summary>
            <param name="id">Id of the object to get</param>
            <typeparam name="T">The type to get</typeparam>
            <returns>The object as type T</returns>
        </member>
        <member name="M:Qlik.Engine.App.GetObject``2(System.String)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <typeparam name="T">The type to get</typeparam>
            <typeparam name="TI">The interface to return</typeparam>
            <returns>The interface</returns>
            <exception cref="T:System.Exception"></exception>
            <exception cref="T:System.TimeoutException"></exception>
        </member>
        <member name="M:Qlik.Engine.App.GetObjectAsync``1(System.String,Qlik.Engine.AsyncHandle)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <param name="asyncHandle">A token / string returned in the answer</param>
            <typeparam name="T">The type to get</typeparam>
            <returns>A task with the object as result</returns>
        </member>
        <member name="M:Qlik.Engine.App.GetObjectAsync``2(System.String,Qlik.Engine.AsyncHandle)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <param name="asyncHandle">A token / string returned in the answer</param>
            <typeparam name="T">The type to get</typeparam>
            <typeparam name="TI">The interface to return</typeparam>
            <returns>A task with the interface as result</returns>
        </member>
        <member name="M:Qlik.Engine.App.GetField(System.String,System.String)">
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAsync(System.String,System.String)">
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFieldAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldDescription(System.String)">
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldDescriptionAsync(System.String)">
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldDescriptionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldDescriptionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFieldDescriptionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariable(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetVariableAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLooselyCoupledVector">
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLooselyCoupledVectorAsync">
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLooselyCoupledVectorAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLooselyCoupledVectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetLooselyCoupledVectorAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetLooselyCoupledVector(System.Collections.Generic.IEnumerable{System.Byte})">
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetLooselyCoupledVectorAsync(System.Collections.Generic.IEnumerable{System.Byte})">
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetLooselyCoupledVectorAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.Byte})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetLooselyCoupledVectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.Byte})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSetLooselyCoupledVectorAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.Evaluate(System.String)">
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateAsync(System.String)">
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnEvaluateAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateEx(System.String)">
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateExAsync(System.String)">
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateExAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.EvaluateExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnEvaluateExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearAll(System.Boolean,System.String)">
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearAllAsync(System.Boolean,System.String)">
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearAllAsync(Qlik.Engine.AsyncHandle,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.LockAll(System.String)">
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.LockAllAsync(System.String)">
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.LockAllAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.UnlockAll(System.String)">
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.UnlockAllAsync(System.String)">
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.UnlockAllAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.Back">
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackAsync">
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.Forward">
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardAsync">
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariable(System.String)">
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableAsync(System.String)">
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateVariableAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveVariable(System.String)">
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveVariableAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnRemoveVariableAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLocaleInfo">
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLocaleInfoAsync">
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLocaleInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLocaleInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetLocaleInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTablesAndKeys(Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTablesAndKeysAsync(Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTablesAndKeysAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTablesAndKeysAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetTablesAndKeysAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetViewDlgSaveInfo">
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetViewDlgSaveInfoAsync">
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetViewDlgSaveInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetViewDlgSaveInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetViewDlgSaveInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetViewDlgSaveInfo(Qlik.Engine.TableViewDlgSaveInfo)">
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetViewDlgSaveInfoAsync(Qlik.Engine.TableViewDlgSaveInfo)">
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetViewDlgSaveInfoAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.TableViewDlgSaveInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetEmptyScript(System.String)">
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetEmptyScriptAsync(System.String)">
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetEmptyScriptAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetEmptyScriptAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetEmptyScriptAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReload(System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadAsync(System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadAsync(Qlik.Engine.AsyncHandle,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDoReloadAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptBreakpoints">
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptBreakpointsAsync">
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptBreakpointsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptBreakpointsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetScriptBreakpointsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScriptBreakpoints(System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScriptBreakpointsAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScriptBreakpointsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScript">
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptAsync">
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetScriptAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTextMacros">
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTextMacrosAsync">
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTextMacrosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTextMacrosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetTextMacrosAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFetchLimit(System.Int32)">
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFetchLimitAsync(System.Int32)">
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFetchLimitAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoSave(System.String)">
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoSaveAsync(System.String)">
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoSaveAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTableData(System.Int32,System.Int32,System.Boolean,System.String)">
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTableDataAsync(System.Int32,System.Int32,System.Boolean,System.String)">
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTableDataAsync(Qlik.Engine.AsyncHandle,System.Int32,System.Int32,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetTableDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32,System.Int32,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetTableDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAndColumnSamples(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAndColumnSamplesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAndColumnSamplesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldAndColumnSamplesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFieldAndColumnSamplesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppLayout">
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppLayoutAsync">
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppLayoutAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetAppLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetAppProperties(Qlik.Engine.NxAppProperties)">
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetAppPropertiesAsync(Qlik.Engine.NxAppProperties)">
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetAppPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxAppProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppProperties">
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppPropertiesAsync">
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAppPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetAppPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLineage">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLineageAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLineageAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLineageAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetLineageAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericSessionObject(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericSessionObjectAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericSessionObjectAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericSessionObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateGenericSessionObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericSessionObject(System.String)">
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericSessionObjectAsync(System.String)">
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericSessionObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericSessionObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyGenericSessionObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericObject(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericObjectAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericObjectAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateGenericObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericObject(System.String)">
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericObjectAsync(System.String)">
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyGenericObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericObject(System.String)">
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericObjectAsync(System.String)">
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetGenericObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetObjects(Qlik.Engine.NxGetObjectOptions)">
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetObjectsAsync(Qlik.Engine.NxGetObjectOptions)">
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetObjectsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxGetObjectOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxGetObjectOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetObjectsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetBookmarks(Qlik.Engine.NxGetBookmarkOptions)">
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetBookmarksAsync(Qlik.Engine.NxGetBookmarkOptions)">
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetBookmarksAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxGetBookmarkOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetBookmarksAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxGetBookmarkOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetBookmarksAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericObject(System.String)">
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericObjectAsync(System.String)">
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCloneGenericObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateDraft(System.String)">
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateDraftAsync(System.String)">
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateDraftAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateDraftAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateDraftAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CommitDraft(System.String)">
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CommitDraftAsync(System.String)">
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CommitDraftAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyDraft(System.String,System.String)">
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyDraftAsync(System.String,System.String)">
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyDraftAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyDraftAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyDraftAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.Undo">
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.UndoAsync">
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.UndoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.UndoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnUndoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.Redo">
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.RedoAsync">
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.RedoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.RedoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnRedoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearUndoBuffer">
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearUndoBufferAsync">
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ClearUndoBufferAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericDimension(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericDimensionAsync(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericDimensionAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateGenericDimensionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericDimension(System.String)">
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericDimensionAsync(System.String)">
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyGenericDimensionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericDimension(System.String)">
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericDimensionAsync(System.String)">
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetGenericDimensionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericDimension(System.String)">
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericDimensionAsync(System.String)">
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCloneGenericDimensionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericMeasure(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericMeasureAsync(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericMeasureAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateGenericMeasureAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericMeasure(System.String)">
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericMeasureAsync(System.String)">
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyGenericMeasureAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericMeasure(System.String)">
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericMeasureAsync(System.String)">
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetGenericMeasureAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericMeasure(System.String)">
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericMeasureAsync(System.String)">
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCloneGenericMeasureAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateSessionVariable(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateSessionVariableAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateSessionVariableAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateSessionVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateSessionVariableAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroySessionVariable(System.String)">
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroySessionVariableAsync(System.String)">
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroySessionVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroySessionVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroySessionVariableAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableEx(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableExAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableExAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateVariableExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateVariableExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableById(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByIdAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByIdAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByIdAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyVariableByIdAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByName(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByNameAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyVariableByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyVariableByNameAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableById(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByIdAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByIdAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByIdAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetVariableByIdAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByName(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByNameAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariableByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetVariableByNameAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.MigrateVariablesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CreateDerivedDefinitionAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDerivedDefinitionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CreateDerivedDefinitionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericDerivedDefinitionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.DestroyDerivedDefinitionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.DestroyDerivedDefinitionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.CloneDerivedDefinitionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CloneDerivedDefinitionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionsForTagsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedDefinitionsForTagsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.AssignDerivedFieldForAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CreateDerivedFieldsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDerivedFieldsProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CreateDerivedFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericDerivedFieldsProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.DestroyDerivedFieldsAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.DestroyDerivedFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldsAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetAllDerivedFields_INTERNALAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetAllDerivedFields_INTERNALAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldDimensionDefAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldDimensionDefAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldForAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetDerivedFieldForAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetAllDerivedFieldsForAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetAllDerivedFieldsForAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.MigrateDerivedFieldsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.CheckExpression(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckExpressionAsync(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckExpressionAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCheckExpressionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckNumberOrExpression(System.String)">
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckNumberOrExpressionAsync(System.String)">
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckNumberOrExpressionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckNumberOrExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCheckNumberOrExpressionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddAlternateState(System.String)">
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddAlternateStateAsync(System.String)">
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddAlternateStateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveAlternateState(System.String)">
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveAlternateStateAsync(System.String)">
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.RemoveAlternateStateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericBookmark(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericBookmarkAsync(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericBookmarkAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateGenericBookmarkAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericBookmark(System.String)">
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericBookmarkAsync(System.String)">
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DestroyGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDestroyGenericBookmarkAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericBookmark(System.String)">
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericBookmarkAsync(System.String)">
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetGenericBookmarkAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ApplyGenericBookmark(System.String)">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ApplyGenericBookmarkAsync(System.String)">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ApplyGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ApplyGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnApplyGenericBookmarkAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericBookmark(System.String)">
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericBookmarkAsync(System.String)">
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CloneGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCloneGenericBookmarkAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddFieldFromExpression(System.String,System.String)">
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddFieldFromExpressionAsync(System.String,System.String)">
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddFieldFromExpressionAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AddFieldFromExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnAddFieldFromExpressionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldOnTheFlyByName(System.String)">
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldOnTheFlyByNameAsync(System.String)">
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldOnTheFlyByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFieldOnTheFlyByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFieldOnTheFlyByNameAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAllInfos">
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAllInfosAsync">
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAllInfosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAllInfosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetAllInfosAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.Resume">
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ResumeAsync">
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ResumeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.AbortModal(System.Boolean)">
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AbortModalAsync(System.Boolean)">
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.AbortModalAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.Publish(System.String,System.String)">
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.PublishAsync(System.String,System.String)">
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.PublishAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.GetMatchingFields(System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMatchingFieldsAsync(System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMatchingFieldsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMatchingFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetMatchingFieldsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.FindMatchingFields(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.FindMatchingFieldsAsync(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.FindMatchingFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.FindMatchingFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnFindMatchingFieldsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.Scramble(System.String)">
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ScrambleAsync(System.String)">
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ScrambleAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SaveObjects">
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.SaveObjectsAsync">
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.SaveObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAssociationScores(System.String,System.String)">
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAssociationScoresAsync(System.String,System.String)">
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAssociationScoresAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetAssociationScoresAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetAssociationScoresAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMediaList">
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMediaListAsync">
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMediaListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetMediaListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetMediaListAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetContentLibraries">
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetContentLibrariesAsync">
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetContentLibrariesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetContentLibrariesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetContentLibrariesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLibraryContent(System.String)">
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLibraryContentAsync(System.String)">
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLibraryContentAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetLibraryContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetLibraryContentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadEx(Qlik.Engine.DoReloadExParams)">
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadExAsync(Qlik.Engine.DoReloadExParams)">
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadExAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.DoReloadExParams)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DoReloadExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.DoReloadExParams)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnDoReloadExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackCount">
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackCountAsync">
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackCountAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.BackCountAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnBackCountAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardCount">
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardCountAsync">
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardCountAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.ForwardCountAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnForwardCountAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ExportReducedDataAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxDownloadOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.ExportReducedDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxDownloadOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.HasSectionAccessAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.App.HasSectionAccessAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.App.GetSetAnalysis(System.String,System.String)">
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetSetAnalysisAsync(System.String,System.String)">
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetSetAnalysisAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetSetAnalysisAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetSetAnalysisAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptEx">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptExAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptExAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetScriptExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetScriptExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariables(Qlik.Engine.VariableListDef)">
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariablesAsync(Qlik.Engine.VariableListDef)">
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariablesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.VariableListDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetVariablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.VariableListDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetVariablesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ExpandExpression(System.String)">
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ExpandExpressionAsync(System.String)">
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ExpandExpressionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ExpandExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnExpandExpressionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchSuggest(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchSuggestAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchSuggestAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchSuggestAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSearchSuggestAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchAssociations(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchAssociationsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchAssociationsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchAssociationsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSearchAssociationsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SelectAssociations(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SelectAssociationsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SelectAssociationsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchResults(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchResultsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchResultsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchResultsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSearchResultsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchObjects(Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchObjectsAsync(Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchObjectsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SearchObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSearchObjectsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScript(System.String)">
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScriptAsync(System.String)">
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetScriptAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckScriptSyntax">
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckScriptSyntaxAsync">
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckScriptSyntaxAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.CheckScriptSyntaxAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCheckScriptSyntaxAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFavoriteVariables">
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFavoriteVariablesAsync">
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFavoriteVariablesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFavoriteVariablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFavoriteVariablesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFavoriteVariables(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFavoriteVariablesAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SetFavoriteVariablesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetIncludeFileContent(System.String)">
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetIncludeFileContentAsync(System.String)">
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetIncludeFileContentAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetIncludeFileContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetIncludeFileContentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateConnection(Qlik.Engine.Connection)">
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateConnectionAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateConnectionAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.CreateConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnCreateConnectionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.ModifyConnection(System.String,Qlik.Engine.Connection,System.Boolean)">
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ModifyConnectionAsync(System.String,Qlik.Engine.Connection,System.Boolean)">
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.ModifyConnectionAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.Connection,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DeleteConnection(System.String)">
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DeleteConnectionAsync(System.String)">
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.DeleteConnectionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnection(System.String)">
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionAsync(System.String)">
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetConnectionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnections">
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionsAsync">
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetConnectionsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetConnectionsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseInfo(System.String)">
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseInfoAsync(System.String)">
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseInfoAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabaseInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabases(System.String)">
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabasesAsync(System.String)">
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabasesAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabasesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabasesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseOwners(System.String,System.String)">
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseOwnersAsync(System.String,System.String)">
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseOwnersAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseOwnersAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabaseOwnersAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTables(System.String,System.String,System.String)">
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablesAsync(System.String,System.String,System.String)">
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablesAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabaseTablesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTableFields(System.String,System.String,System.String,System.String)">
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTableFieldsAsync(System.String,System.String,System.String,System.String)">
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTableFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTableFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabaseTableFieldsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablePreview(System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablePreviewAsync(System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablePreviewAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetDatabaseTablePreviewAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetDatabaseTablePreviewAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFolderItemsForConnection(System.String,System.String)">
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFolderItemsForConnectionAsync(System.String,System.String)">
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFolderItemsForConnectionAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFolderItemsForConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFolderItemsForConnectionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GuessFileType(System.String,System.String)">
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GuessFileTypeAsync(System.String,System.String)">
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GuessFileTypeAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GuessFileTypeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGuessFileTypeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTables(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesAsync(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFileTablesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTableFields(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTableFieldsAsync(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTableFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTableFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFileTableFieldsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablePreview(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablePreviewAsync(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablePreviewAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablePreviewAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFileTablePreviewAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesEx(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesExAsync(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesExAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.GetFileTablesExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnGetFileTablesExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.SendGenericCommandToCustomConnector(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SendGenericCommandToCustomConnectorAsync(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SendGenericCommandToCustomConnectorAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.SendGenericCommandToCustomConnectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.App.OnSendGenericCommandToCustomConnectorAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.App.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.GenericObject">
            <summary>This class describes all the methods that apply at generic object level.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CreateChild``1(Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="prop">Properties of the child to create</param>
            <param name="propForThis">Properties of the parent object</param>
            <returns>The created object</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.CreateChildAsync``1(Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Async creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="prop">Properties for the child to create</param>
            <param name="propForThis">Properties for the parent object (this)</param>
            <returns>A task with the created object as result</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.CreateChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Async creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="prop">Properties for the child to create</param>
            <param name="propForThis">Properties for the parent object (this)</param>
            <param name="onResult">Response handler that is used to change the Response object into an instance of T</param>
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task with the created object as result</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnCreateChildAsync``1(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Async callback for create child async
            </summary>
            <typeparam name="T">Type of the created child</typeparam>
            <param name="response">The response</param>
            <returns>The created object</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DidCreateChild(Qlik.Engine.NxInfo,Qlik.Engine.GenericObject)">
            <summary>
            Callback after create, this method can be overridden to customize the behavior after a child has been created.
            </summary>
            <param name="info">NxInfo for the child that was created</param>
            <param name="genericObject">The created child object as generic object</param>
        </member>
        <member name="M:Qlik.Engine.GenericObject.WillCreateChild(Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Callback before create
            </summary>
            <param name="parentGenericObjectProperties">Properties of the parent object</param>
            <param name="genericObjectProperties">Properties of the child object to create</param>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyChildAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task with boolean as result, true if the child was destroyed successfully</returns>
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.GenericObjectProperties)">
            <param name="onResult">Response handler that is used to change the Response object into an instance of T</param>
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task with the destroyed object as result</returns>
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnDestroyChildAsync(Qlik.Engine.Communication.IO.Response,System.String)">
            <summary>
            Async callback for destroy
            </summary>
            <param name="response">The response</param>
            <param name="id">Identifier of the child that was destroyed.</param>
            <returns>True if the child was destroyed successfully</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DidDestroyChild(System.Boolean,System.String)">
            <summary>
            Callback after destroy, this method can be overridden to customize the behavior after a child has been destroyed.
            </summary>
            <param name="success">True if the child was destroyed successfully</param>
            <param name="childId">Identifier of the child that was destroyed.</param>
        </member>
        <member name="M:Qlik.Engine.GenericObject.WillDestroyChild(System.String,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Callback before destroy
            </summary>
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetMasterObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Async callback for get
            </summary>
            <param name="response">The response</param>
            <returns>The resulting object</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.Link(System.String)">
            <summary>
            Link master object
            </summary>
            <param name="masterId">Id of the master object</param>
        </member>
        <member name="M:Qlik.Engine.GenericObject.LinkAsync(System.String)">
            <summary>
            Link master object
            </summary>
            <param name="masterId">Id of the master object</param>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.LinkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <summary>
            Link master object
            </summary>
            <param name="masterId">Id of the master object</param>
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.Unlink">
            <summary>
            Unlink master object
            </summary>
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnlinkAsync">
            <summary>
            Unlink master object
            </summary>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnlinkAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Unlink master object
            </summary>
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DuplicateAs(System.String,System.String)">
            <summary>
            DuplicateAs
            </summary>
            <param name="id">Id of the object to duplicate as</param>
            <param name="asType">The type to duplicate as</param>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DuplicateAsAsync(System.String,System.String)">
            <summary>
            DuplicateAs
            </summary>
            <param name="id">Id of the object to duplicate as</param>
            <param name="asType">The type to duplicate as</param>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DuplicateAsAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <summary>
            DuplicateAs
            </summary>
            <param name="id">Id of the object to duplicate as</param>
            <param name="asType">The type to duplicate as</param>
            <param name="asyncHandle">A string handle allowing the user to access request status</param>
            <returns>A task</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefCount">
            <summary>
            Retrieves the total number of HyperCube/ListObject definitions contained in this generic object
            </summary>
            <returns>number of HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefCountAsync">
            <summary>
            Retrieves the total number of HyperCube/ListObject definitions contained in this generic object asynchronously
            </summary>
            <returns>Task that will resolve the number of HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.IndexOfDefPath(System.String)">
            <summary>
            Converts an existing path to its equivalent index value
            </summary>
            <param name="defPath">path to HyperCube/ListObject definition</param>
            <returns>index to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.IndexOfDefPathAsync(System.String)">
            <summary>
            Converts an existing path to its equivalent index value asynchronously
            </summary>
            <param name="defPath">path to HyperCube/ListObject definition</param>
            <returns>Task that resolves the index to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.IndexOfDefPath(System.String[])">
            <summary>
            Converts existing paths to their equivalent index values
            </summary>
            <param name="defPaths">array of paths to HyperCube/ListObject definitions</param>
            <returns>array with indexes to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.IndexOfDefPathAsync(System.String[])">
            <summary>
            Converts existing paths to their equivalent index values asynchronously
            </summary>
            <param name="defPaths">array of paths to HyperCube/ListObject definitions</param>
            <returns>Task that resolves an array with indexes to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefPathAtIndex(System.Int32)">
            <summary>
            Converts an existing index to its equivalent path value
            </summary>
            <param name="index">index to HyperCube/ListObject definition</param>
            <returns>path to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefPathAtIndexAsync(System.Int32)">
            <summary>
            Converts an existing index to its equivalent path value asynchronously
            </summary>
            <param name="index">index to HyperCube/ListObject definition</param>
            <returns>Task that resolves a path to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefPathAtIndex(System.Int32[])">
            <summary>
            Converts existing index values to their equivalent path values
            </summary>
            <param name="indexes">array with indexes to HyperCube/ListObject definitions</param>
            <returns>array of paths to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.DefPathAtIndexAsync(System.Int32[])">
            <summary>
            Converts existing index values to their equivalent path values asynchronously
            </summary>
            <param name="indexes">array with indexes to HyperCube/ListObject definitions</param>
            <returns>Task that resolves an array of paths to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubePager(System.String)">
            <summary>
            Get a hypercube paging interface for a hypercube at the specified path.
            </summary>
            <param name="hyperCubePath">The property path for the hypercube.</param>
            <returns>The <see cref="T:Qlik.Engine.HyperCubePager"/> instance.</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetAllHyperCubePagers">
            <summary>
            Get hypercube paging interfaces for all hypercubes in the object.
            </summary>
            <returns>The set of <see cref="T:Qlik.Engine.HyperCubePager"/> instances.</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetAllHyperCubePagersAsync">
            <summary>
            Get hypercube paging interfaces for all hypercubes in the object.
            </summary>
            <returns>A task with the set of <see cref="T:Qlik.Engine.HyperCubePager"/> instances as result.</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetListObjectPager(System.String)">
            <summary>
            Get a list object paging interface for a list box at the specified path.
            </summary>
            <param name="listObjectPath">The property path for the list object.</param>
            <returns>The <see cref="T:Qlik.Engine.ListObjectPager"/> instance.</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetAllListObjectPagers">
            <summary>
            Get list object paging interfaces for all list objects in the object.
            </summary>
            <returns>The set of <see cref="T:Qlik.Engine.ListObjectPager"/> instances.</returns>
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetListObjectData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetListObjectDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetListObjectDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetListObjectDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetListObjectDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeReducedData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeReducedDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeReducedDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeReducedDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeReducedDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubePivotData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubePivotDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubePivotDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubePivotDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubePivotDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeStackData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeStackDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeStackDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeStackDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeStackDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeContinuousData(System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeContinuousDataAsync(System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeContinuousDataAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeContinuousDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeContinuousDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeTreeData(System.String,Qlik.Engine.NxTreeDataOption)">
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeTreeDataAsync(System.String,Qlik.Engine.NxTreeDataOption)">
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeTreeDataAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.NxTreeDataOption)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeTreeDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.NxTreeDataOption)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeTreeDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeBinnedData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeBinnedDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeBinnedDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetHyperCubeBinnedDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetHyperCubeBinnedDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSoftPatches">
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSoftPatchesAsync">
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSoftPatchesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetProperties(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetPropertiesAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetProperties">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetPropertiesAsync">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetEffectiveProperties">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetEffectivePropertiesAsync">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetEffectivePropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetEffectivePropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetEffectivePropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetFullPropertyTree(Qlik.Engine.GenericObjectEntry)">
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetFullPropertyTreeAsync(Qlik.Engine.GenericObjectEntry)">
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetFullPropertyTreeAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectEntry)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetFullPropertyTree">
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetFullPropertyTreeAsync">
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetFullPropertyTreeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetFullPropertyTreeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetFullPropertyTreeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSelections(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSelectionsAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ClearSelectionsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExportData(Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExportDataAsync(Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExportDataAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExportDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnExportDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectValues(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectValuesAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectPossible(System.String,System.Boolean)">
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectPossibleAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectPossibleAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectPossibleAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectPossibleAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectExcluded(System.String,System.Boolean)">
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectExcludedAsync(System.String,System.Boolean)">
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectExcludedAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectExcludedAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectExcludedAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAlternative(System.String,System.Boolean)">
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAlternativeAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAlternativeAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAlternativeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectAlternativeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAll(System.String,System.Boolean)">
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAllAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAllAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectAllAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectAllAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectContinuousRange(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectContinuousRangeAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectContinuousRangeAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectListObjectContinuousRangeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectListObjectContinuousRangeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SearchListObjectFor(System.String,System.String)">
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SearchListObjectForAsync(System.String,System.String)">
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SearchListObjectForAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SearchListObjectForAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSearchListObjectForAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AbortListObjectSearch(System.String)">
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AbortListObjectSearchAsync(System.String)">
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AbortListObjectSearchAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AcceptListObjectSearch(System.String,System.Boolean,System.Boolean)">
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AcceptListObjectSearchAsync(System.String,System.Boolean,System.Boolean)">
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.AcceptListObjectSearchAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandLeft(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandLeftAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandLeftAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandTop(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandTopAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ExpandTopAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseLeft(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseLeftAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseLeftAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseTop(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseTopAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CollapseTopAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DrillUp(System.String,System.Int32,System.Int32)">
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DrillUpAsync(System.String,System.Int32,System.Int32)">
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DrillUpAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.Lock(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.LockAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.LockAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.Unlock(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnlockAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnlockAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeValues(System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeValuesAsync(System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectHyperCubeValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeCells(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeCellsAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeCellsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeCellsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectHyperCubeCellsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectPivotCells(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectPivotCellsAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectPivotCellsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectPivotCellsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectPivotCellsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.RangeSelectHyperCubeValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.RangeSelectHyperCubeValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.RangeSelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.RangeSelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnRangeSelectHyperCubeValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectHyperCubeValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectHyperCubeValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnMultiRangeSelectHyperCubeValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectTreeDataValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectTreeDataValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectTreeDataValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.MultiRangeSelectTreeDataValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnMultiRangeSelectTreeDataValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeContinuousRange(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeContinuousRangeAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeContinuousRangeAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SelectHyperCubeContinuousRangeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnSelectHyperCubeContinuousRangeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChild(System.String)">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildAsync(System.String)">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetChildAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetParent">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetParentAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetParentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetParentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetParentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildInfos">
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildInfosAsync">
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildInfosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetChildInfosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetChildInfosAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnCreateChildAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyChild(System.String,Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyChildAsync(System.String,Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyAllChildren(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyAllChildrenAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.DestroyAllChildrenAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetChildArrayOrder(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetChildArrayOrderAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.SetChildArrayOrderAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetLinkedObjectsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CopyFrom(System.String)">
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CopyFromAsync(System.String)">
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.CopyFromAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.BeginSelections(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.BeginSelectionsAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.BeginSelectionsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EndSelections(System.Boolean)">
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EndSelectionsAsync(System.Boolean)">
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EndSelectionsAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ResetMadeSelections">
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ResetMadeSelectionsAsync">
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ResetMadeSelectionsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EmbedSnapshotObject(System.String)">
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EmbedSnapshotObjectAsync(System.String)">
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.EmbedSnapshotObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetSnapshotObject">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetSnapshotObjectAsync">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetSnapshotObjectAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.GetSnapshotObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.OnGetSnapshotObjectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.Publish">
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.PublishAsync">
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnPublish">
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnPublishAsync">
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericObject.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="P:Qlik.Engine.GenericObject.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericObject.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericObject.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.ExtendsId">
            <summary>Reference to property Layout.ExtendsId</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.HasSoftPatches">
            <summary>Reference to property Layout.HasSoftPatches</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.Error">
            <summary>Reference to property Layout.Error</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.SelectionInfo">
            <summary>Reference to property Layout.SelectionInfo</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObject.StateName">
            <summary>Reference to property Layout.StateName</summary>
        </member>
        <member name="T:Qlik.Engine.Hub">
            <summary>
            Represents the connection hub of a qlik engine location
            </summary>
            <summary>This class describes all the methods that apply at global level.</summary>
        </member>
        <member name="E:Qlik.Engine.Hub.CommunicationError">
            <summary>
            This event is triggered when an communication error occurs.
            </summary>
        </member>
        <member name="E:Qlik.Engine.Hub.CommunicationErrorEvent">
            <summary>
            This event is triggered when an communication error occurs.
            </summary>
        </member>
        <member name="E:Qlik.Engine.Hub.ObjectsChanged">
            <summary>
            Eventhandler for objects changed event
            </summary>
        </member>
        <member name="E:Qlik.Engine.Hub.ObjectsClosed">
            <summary>
            Eventhandler for objects closed event
            </summary>
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgressAsync(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/GetProgress/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteractAsync(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/GetInteract/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.InteractDoneAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.InteractDef)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/InteractDone/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelRequestAsync(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/CancelRequest/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgress(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/GetProgress/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteract(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/GetInteract/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.InteractDone(Qlik.Engine.AsyncHandle,Qlik.Engine.InteractDef)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/InteractDone/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelRequest(Qlik.Engine.AsyncHandle)">
            <!-- No matching elements were found for the following include tag --><include file="Documentation/Model.Documentation.xml" path="Qlikview/Hub/CancelRequest/*" />
        </member>
        <member name="M:Qlik.Engine.Hub.Dispose(System.Boolean)">
            <summary>
            Disposes the connection
            </summary>
            <param name="disposing">True if we are disposing</param>
        </member>
        <member name="M:Qlik.Engine.Hub.AbortRequest(System.Int32)">
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AbortRequestAsync(System.Int32)">
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AbortRequestAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AbortAll">
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AbortAllAsync">
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AbortAllAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgress(System.Int32)">
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgressAsync(System.Int32)">
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgressAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetProgressAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetProgressAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QvVersion">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QvVersionAsync">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QvVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QvVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnQvVersionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSVersion">
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSVersionAsync">
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnOSVersionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSName">
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSNameAsync">
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSNameAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OSNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnOSNameAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QTProduct">
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QTProductAsync">
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QTProductAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.QTProductAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnQTProductAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppList">
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppListAsync">
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetAppListAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteract(System.Int32)">
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteractAsync(System.Int32)">
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteractAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetInteractAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetInteractAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.InteractDone(System.Int32,Qlik.Engine.InteractDef)">
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.InteractDoneAsync(System.Int32,Qlik.Engine.InteractDef)">
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.InteractDoneAsync(Qlik.Engine.AsyncHandle,System.Int32,Qlik.Engine.InteractDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAuthenticatedUser">
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAuthenticatedUserAsync">
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAuthenticatedUserAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAuthenticatedUserAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetAuthenticatedUserAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppEx(System.String,System.String,System.String,System.String,System.String)">
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppExAsync(System.String,System.String,System.String,System.String,System.String)">
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppExAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnCreateAppExAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetActiveDoc">
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetActiveDocAsync">
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetActiveDocAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetActiveDocAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetActiveDocAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AllowCreateApp">
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AllowCreateAppAsync">
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AllowCreateAppAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.AllowCreateAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnAllowCreateAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateApp(System.String,System.String)">
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppAsync(System.String,System.String)">
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnCreateAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.DestroyApp(System.String)">
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.DestroyAppAsync(System.String)">
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.DestroyAppAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.DestroyAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnDestroyAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsDesktopMode">
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsDesktopModeAsync">
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsDesktopModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsDesktopModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnIsDesktopModeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetConfigurationAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.Hub.GetConfigurationAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.Hub.CancelRequest(System.Int32)">
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelRequestAsync(System.Int32)">
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelRequestAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ShutdownProcess">
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ShutdownProcessAsync">
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ShutdownProcessAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReloadExtensionList">
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReloadExtensionListAsync">
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReloadExtensionListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReplaceAppFromID(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReplaceAppFromIDAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReplaceAppFromIDAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReplaceAppFromIDAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnReplaceAppFromIDAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ReplaceAppFromPathAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.Hub.CopyApp(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CopyAppAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CopyAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CopyAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnCopyAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ImportAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.Hub.ImportAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.Hub.ImportAppExAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.Hub.ExportApp(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ExportAppAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ExportAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ExportAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnExportAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.PublishApp(System.String,System.String,System.String)">
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.PublishAppAsync(System.String,System.String,System.String)">
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.PublishAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsPersonalMode">
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsPersonalModeAsync">
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsPersonalModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsPersonalModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnIsPersonalModeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetUniqueID">
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetUniqueIDAsync">
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetUniqueIDAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetUniqueIDAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetUniqueIDAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OpenApp(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OpenAppAsync(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OpenAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OpenAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnOpenDocAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionApp">
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppAsync">
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnCreateSessionAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppFromApp(System.String)">
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppFromAppAsync(System.String)">
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppFromAppAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CreateSessionAppFromAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnCreateSessionAppFromAppAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ProductVersion">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ProductVersionAsync">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ProductVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ProductVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnProductVersionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppEntry(System.String)">
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppEntryAsync(System.String)">
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppEntryAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetAppEntryAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetAppEntryAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.EngineVersion">
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.EngineVersionAsync">
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.EngineVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.EngineVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnEngineVersionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ConfigureReload(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ConfigureReloadAsync(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.ConfigureReloadAsync(Qlik.Engine.AsyncHandle,System.Boolean,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelReload">
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelReloadAsync">
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.CancelReloadAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBNF(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBNFAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBNFAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBNFAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetBNFAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFunctions(Qlik.Engine.FunctionGroup)">
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFunctionsAsync(Qlik.Engine.FunctionGroup)">
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFunctionsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.FunctionGroup)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFunctionsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.FunctionGroup)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetFunctionsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOdbcDsns">
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOdbcDsnsAsync">
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOdbcDsnsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOdbcDsnsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetOdbcDsnsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOleDbProviders">
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOleDbProvidersAsync">
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOleDbProvidersAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetOleDbProvidersAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetOleDbProvidersAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDatabasesFromConnectionString(Qlik.Engine.Connection)">
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDatabasesFromConnectionStringAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDatabasesFromConnectionStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDatabasesFromConnectionStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetDatabasesFromConnectionStringAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsValidConnectionString(Qlik.Engine.Connection)">
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsValidConnectionStringAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsValidConnectionStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.IsValidConnectionStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnIsValidConnectionStringAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDefaultAppFolder">
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDefaultAppFolderAsync">
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDefaultAppFolderAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetDefaultAppFolderAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetDefaultAppFolderAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetMyDocumentsFolderAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.Hub.GetMyDocumentsFolderAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.Hub.GetLogicalDriveStrings">
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetLogicalDriveStringsAsync">
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetLogicalDriveStringsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetLogicalDriveStringsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetLogicalDriveStringsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFolderItemsForPath(System.String)">
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFolderItemsForPathAsync(System.String)">
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFolderItemsForPathAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetFolderItemsForPathAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetFolderItemsForPathAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetSupportedCodePages">
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetSupportedCodePagesAsync">
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetSupportedCodePagesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetSupportedCodePagesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetSupportedCodePagesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetCustomConnectors(System.Boolean)">
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetCustomConnectorsAsync(System.Boolean)">
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetCustomConnectorsAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetCustomConnectorsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetCustomConnectorsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNF(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetBaseBNFAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFHash(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFHashAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFHashAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFHashAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetBaseBNFHashAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFString(Qlik.Engine.BNFType)">
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFStringAsync(Qlik.Engine.BNFType)">
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetBaseBNFStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetBaseBNFStringAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetStreamList">
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetStreamListAsync">
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetStreamListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.GetStreamListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.OnGetStreamListAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Hub.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.IAppIdentifier">
            <summary>
            Token to identify an unique Qlikview app
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.AppName">
            <summary>
            The human-readable name of the app
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.AppId">
            <summary>
            The machine-readable id of the app
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.ConnectedUsers">
            <summary>
            Number of connected users
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.FileTime">
            <summary>
            The application filetime
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.FileSize">
            <summary>
            The application filesize on disk
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.Meta">
            <summary>
            Meta information about the application
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.LastReloadTime">
            <summary>
            Last reloaded time
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.Title">
            <summary>
            Titel for the application
            </summary>
        </member>
        <member name="P:Qlik.Engine.IAppIdentifier.Thumbnail">
            <summary>
            Thumbnail for the application
            </summary>
        </member>
        <member name="T:Qlik.Engine.IApp">
            <summary>
            App / Doc class
            </summary>
            <summary>This class describes all the methods that apply at app level.</summary>
        </member>
        <member name="E:Qlik.Engine.IApp.MethodInvocationError">
            <summary>
             
            </summary>
        </member>
        <member name="E:Qlik.Engine.IApp.CommunicationError">
            <summary>
             
            </summary>
        </member>
        <member name="E:Qlik.Engine.IApp.CommunicationErrorEvent">
            <summary>
            Triggered when a communication error occurs on the websocket used by the app.
            </summary>
        </member>
        <member name="P:Qlik.Engine.IApp.Session">
            <summary>
             
            </summary>
        </member>
        <member name="M:Qlik.Engine.IApp.GetObject``1(System.String)">
            <summary>
            Get an object
            </summary>
            <param name="id">Id of the object to get</param>
            <typeparam name="T">The type to get</typeparam>
            <returns>The object as type T</returns>
        </member>
        <member name="M:Qlik.Engine.IApp.GetObject``2(System.String)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <typeparam name="T">The type to get</typeparam>
            <typeparam name="TI">The interface to return</typeparam>
            <returns>The interface</returns>
            <exception cref="T:System.Exception"></exception>
            <exception cref="T:System.TimeoutException"></exception>
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjectAsync``1(System.String,Qlik.Engine.AsyncHandle)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <param name="asyncHandle">A token / string returned in the answer</param>
            <typeparam name="T">The type to get</typeparam>
            <returns>A task with the object as result</returns>
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjectAsync``2(System.String,Qlik.Engine.AsyncHandle)">
            <summary>
            Get an object
            </summary>
            <param name="id">Object id</param>
            <param name="asyncHandle">A token / string returned in the answer</param>
            <typeparam name="T">The type to get</typeparam>
            <typeparam name="TI">The interface to return</typeparam>
            <returns>A task with the interface as result</returns>
        </member>
        <member name="M:Qlik.Engine.IApp.GetField(System.String,System.String)">
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAsync(System.String,System.String)">
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the handle of a field.</para>
        </summary><param name="fieldName">Name of the field.
                            This parameter is mandatory.</param><param name="stateName">Name of the alternate state.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldDescription(System.String)">
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldDescriptionAsync(System.String)">
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldDescriptionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldDescriptionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the description of a field.</para>
        </summary><param name="fieldName">Name of the field
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariable(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLooselyCoupledVector">
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLooselyCoupledVectorAsync">
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLooselyCoupledVectorAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLooselyCoupledVectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
          <para>In case of circular references, the engine automatically create loosely coupled tables so that the circular references do not create a loop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetLooselyCoupledVector(System.Collections.Generic.IEnumerable{System.Byte})">
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetLooselyCoupledVectorAsync(System.Collections.Generic.IEnumerable{System.Byte})">
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetLooselyCoupledVectorAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.Byte})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetLooselyCoupledVectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.Byte})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sets a vector of loosely coupled state flags, one element for each table in the app.</para>
          <para>The last three values in the vector are extra values. These values are for internal use.</para>
        </summary><param name="v">Vector of loosely coupled state flags, one element for each table in the app.
                            Set the flag to 1 to loose a table.
                            Set the flag to 0 to not loose a table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Evaluate(System.String)">
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateAsync(System.String)">
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an expression as a string.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateEx(System.String)">
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateExAsync(System.String)">
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateExAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.EvaluateExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an expression as a dual.</para>
        </summary><param name="expression">Expression to evaluate.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearAll(System.Boolean,System.String)">
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearAllAsync(System.Boolean,System.String)">
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearAllAsync(Qlik.Engine.AsyncHandle,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears all selections in all fields of the current app.</para>
        </summary><param name="lockedAlso">This parameter is optional.
                            Default is false. Selections on locked fields are not cleared.
                            Set this parameter to true to clear all selections, including the locked fields.</param><param name="stateName">Name of the alternate state.
                            If an alternate state is defined in qStateName, only the selections related to this alternate state are cleared.
                            This parameter is optional.
                            Default state is current selections.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.LockAll(System.String)">
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.LockAllAsync(System.String)">
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.LockAllAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method locks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UnlockAll(System.String)">
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UnlockAllAsync(System.String)">
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UnlockAllAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks all selections in all fields of the current app.</para>
        </summary><param name="stateName">Alternate state name.
                            If this parameter is set, the method unlocks all selections that are in the specified state name.
                            This parameter is optional.
                            The default value is an empty string.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Back">
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackAsync">
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Loads the last logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Forward">
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardAsync">
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Loads the next logical operation (if any).</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariable(System.String)">
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableAsync(System.String)">
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveVariable(System.String)">
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveVariableAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
        </summary><param name="name">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLocaleInfo">
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLocaleInfoAsync">
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLocaleInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLocaleInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves locale information.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTablesAndKeys(Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTablesAndKeysAsync(Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTablesAndKeysAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTablesAndKeysAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Size,Qlik.Engine.Size,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns:</para>
          <para>* the list of tables in an app and the fields inside each table</para>
          <para>* the list of derived fields</para>
          <para>* the list of key fields</para>
        </summary><param name="windowSize">Defines the size of the window that is used to display the results.</param><param name="nullSize">&amp;#160;</param><param name="cellHeight">Height of a cell in a table in pixels.</param><param name="syntheticMode">One of:
                             
                                true for internal table viewer
                                false for source table viewer
                             
                            This parameter is mandatory.</param><param name="includeSysVars">If set to true, the system variables are included.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetViewDlgSaveInfo">
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetViewDlgSaveInfoAsync">
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetViewDlgSaveInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetViewDlgSaveInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information about the position of the tables in the data model viewer. </para>
          <para>The position of the broom points and the position of the connection points cannot be retrieved in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetViewDlgSaveInfo(Qlik.Engine.TableViewDlgSaveInfo)">
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetViewDlgSaveInfoAsync(Qlik.Engine.TableViewDlgSaveInfo)">
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetViewDlgSaveInfoAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.TableViewDlgSaveInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the positions of the tables in the data model viewer.</para>
          <para>The position of the broom points and the position of the connection points cannot be set in Qlik Sense.</para>
          <para>** Representation of tables, broom points and connection points **</para>
          <para>The green circles represent the broom points.</para>
          <para>The red circle represents a connection point.</para>
        </summary><param name="info">Information about the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetEmptyScript(System.String)">
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetEmptyScriptAsync(System.String)">
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetEmptyScriptAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetEmptyScriptAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a script that contains one section. This section contains Set statements that give localized information from the regional settings of the computer. </para>
          <para>The computer regional settings are retrieved when the engine starts.</para>
        </summary><param name="localizedMainSection">Name of the script section.
                            The default value is Main.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReload(System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadAsync(System.Int32,System.Boolean,System.Boolean)">
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadAsync(Qlik.Engine.AsyncHandle,System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reloads the script that is set in an app.</para>
        </summary><param name="mode">Error handling mode
                            One of:
                             
                                0: for default mode
                                1: for ABEND; the reload of the script ends if an error occurs.
                                2: for ignore; the reload of the script continues even if an error is detected in the script.
                             
                            This parameter is optional.</param><param name="partial">Set to true for partial reload.
                            This parameter is optional.
                            The default value is false.</param><param name="debug">Set to true if debug breakpoints are to be honored. The execution of the script will be in debug mode.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptBreakpoints">
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptBreakpointsAsync">
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptBreakpointsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptBreakpointsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the breakpoints in the script of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScriptBreakpoints(System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScriptBreakpointsAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScriptBreakpointsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.EditorBreakpoint})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Set some breakpoints in the script of an app.</para>
        </summary><param name="breakpoints">Information about the breakpoints.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScript">
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptAsync">
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets values in script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTextMacros">
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTextMacrosAsync">
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTextMacrosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTextMacrosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para> Fetches updated variables after a statement execution.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFetchLimit(System.Int32)">
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFetchLimitAsync(System.Int32)">
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFetchLimitAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Limits the number of rows of data to load from a data source. </para>
          <para>This method works when reloading in debug mode.</para>
        </summary><param name="limit">Fetch limit.
                            Number of rows to load.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoSave(System.String)">
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoSaveAsync(System.String)">
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoSaveAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Saves an app. All objects and data in the data model are saved. </para>
        </summary><param name="fileName">Name of the file to save.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTableData(System.Int32,System.Int32,System.Boolean,System.String)">
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTableDataAsync(System.Int32,System.Int32,System.Boolean,System.String)">
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTableDataAsync(Qlik.Engine.AsyncHandle,System.Int32,System.Int32,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetTableDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32,System.Int32,System.Boolean,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the data of a specific table.</para>
        </summary><param name="offset">Position from the top, starting from 0.
                             
 
If the offset is set to 0, the rows starting from the position/index 0 are shown.</param><param name="rows">Number of rows to show.</param><param name="syntheticMode">If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).</param><param name="tableName">Name of the table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAndColumnSamples(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAndColumnSamplesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAndColumnSamplesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldAndColumnSamplesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{Qlik.Engine.FieldOrColumn},System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="fieldsOrColumnsWithWildcards" /><param name="maxNumberOfValues" /><param name="randSeed" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppLayout">
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppLayoutAsync">
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppLayoutAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Evaluates an app. </para>
          <para>Returns dynamic properties (if any) in addition to the engine (fixed) properties.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetAppProperties(Qlik.Engine.NxAppProperties)">
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetAppPropertiesAsync(Qlik.Engine.NxAppProperties)">
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetAppPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxAppProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets properties to an app.</para>
        </summary><param name="prop">Information about the properties of an app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppProperties">
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppPropertiesAsync">
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAppPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLineage">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLineageAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLineageAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLineageAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericSessionObject(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericSessionObjectAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericSessionObjectAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericSessionObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a transient object. For example, you can use a transient object to create an app overview or a story overview.</para>
          <para>It is possible to create a transient object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">Information about the object
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericSessionObject(System.String)">
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericSessionObjectAsync(System.String)">
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericSessionObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericSessionObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a transient object. </para>
        </summary><param name="id">Identifier of the transient object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericObject(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericObjectAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericObjectAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a generic object at app level. For more information on generic objects, see Generic objects.</para>
          <para>It is possible to create a generic object that is linked to another object. </para>
          <para>A linked object is an object that points to a linking object. The linking object is defined in the properties of the linked object (in qExtendsId). </para>
          <para>The linked object has the same properties as the linking object.</para>
          <para>The linking object cannot be a transient object.</para>
        </summary><param name="prop">&lt;!-- ##description --&gt;
                                Information about the object
                                This parameter is mandatory.
                                &lt;!-- ##description --&gt;</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericObject(System.String)">
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericObjectAsync(System.String)">
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes an app object. </para>
          <para>The children of the object (if any) are removed as well.</para>
        </summary><param name="id">Identifier of the object to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericObject(System.String)">
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericObjectAsync(System.String)">
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the app object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjects(Qlik.Engine.NxGetObjectOptions)">
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjectsAsync(Qlik.Engine.NxGetObjectOptions)">
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjectsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxGetObjectOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxGetObjectOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a list of objects in the app.</para>
        </summary><param name="options">Information about the list of objects.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetBookmarks(Qlik.Engine.NxGetBookmarkOptions)">
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetBookmarksAsync(Qlik.Engine.NxGetBookmarkOptions)">
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetBookmarksAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxGetBookmarkOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetBookmarksAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxGetBookmarkOptions)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns a list of bookmarks in the app.</para>
        </summary><param name="options">Information about the list of bookmarks.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericObject(System.String)">
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericObjectAsync(System.String)">
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones any visualizations, sheets and stories. The clone method works for both app objects and child objects.</para>
          <para>When you clone an object that contains children, the children are cloned as well.</para>
          <para>It is not possible to clone a session object.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateDraft(System.String)">
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateDraftAsync(System.String)">
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateDraftAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateDraftAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a draft of an object.</para>
          <para>This method can be used to create a draft of a sheet or a story that is published. This is a way to continue working on a sheet or a story that is published.</para>
          <para>Replace the published object by the content of the draft by invoking the CommitDraft method.</para>
        </summary><param name="id">Identifier of the object to create a draft from.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CommitDraft(System.String)">
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CommitDraftAsync(System.String)">
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CommitDraftAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Commits the draft of an object that was previously created by invoking the CreateDraft method.</para>
          <para>Committing a draft replaces the corresponding published object.</para>
        </summary><param name="id">Identifier of the draft to commit.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyDraft(System.String,System.String)">
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyDraftAsync(System.String,System.String)">
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyDraftAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyDraftAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes the draft of an object. </para>
          <para>The children of the draft object (if any) are removed as well.</para>
          <para>This method can be used to cancel the work on the draft of an object. For example, if you had created a draft of a sheet that is published, you might not want anymore to replace the published sheet. </para>
        </summary><param name="id">Identifier of the draft object to remove.
                            This parameter is mandatory.</param><param name="sourceId">Identifier of the source object (the object from which a draft was created).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Undo">
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UndoAsync">
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UndoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.UndoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Undoes the previous operation. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Redo">
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RedoAsync">
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RedoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RedoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Redoes the previous operation.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearUndoBuffer">
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearUndoBufferAsync">
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ClearUndoBufferAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears entirely the undo and redo buffer.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericDimension(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericDimensionAsync(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericDimensionAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a master dimension.</para>
          <para>A master dimension is stored in the library of an app and can be used in many objects. Several generic objects can contain the same dimension.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericDimension(System.String)">
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericDimensionAsync(System.String)">
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a dimension.</para>
        </summary><param name="id">Identifier of the dimension to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericDimension(System.String)">
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericDimensionAsync(System.String)">
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a dimension.</para>
        </summary><param name="id">Identifier of the dimension
                            This parameter is mandatory</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericDimension(System.String)">
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericDimensionAsync(System.String)">
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericDimensionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a dimension.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericMeasure(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericMeasureAsync(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericMeasureAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a master measure.</para>
          <para>A master measure is stored in the library of an app and can be used in many objects. Several generic objects can contain the same measure.</para>
        </summary><param name="prop">Information about the properties
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericMeasure(System.String)">
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericMeasureAsync(System.String)">
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a generic measure.</para>
        </summary><param name="id">Identifier of the measure to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericMeasure(System.String)">
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericMeasureAsync(System.String)">
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a measure.</para>
        </summary><param name="id">Identifier of the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericMeasure(System.String)">
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericMeasureAsync(System.String)">
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericMeasureAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a measure.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateSessionVariable(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateSessionVariableAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateSessionVariableAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateSessionVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a transient variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroySessionVariable(System.String)">
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroySessionVariableAsync(System.String)">
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroySessionVariableAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroySessionVariableAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a transient variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableEx(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableExAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableExAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateVariableExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a variable.</para>
          <para>To create a variable via a script, you need to use the SetScript method. For more information, see Create a variable.</para>
          <para>To set some properties to the variable, use the SetProperties method.</para>
          <para>In a published app, only transient variables can be created. See CreateSessionVariable method.</para>
        </summary><param name="prop">Name of the variable. Variable names are case sensitive and must be unique.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableById(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByIdAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByIdAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByIdAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="id">Identifier of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByName(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByNameAsync(System.String)">
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyVariableByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a variable.</para>
          <para>Script-defined variables cannot be removed using the DestroyVariableById method or the DestroyVariableByName method. For more information, see Remove a variable.</para>
        </summary><param name="name">Name of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableById(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByIdAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByIdAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByIdAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="id">Identifier of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByName(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByNameAsync(System.String)">
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariableByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the handle of a variable.</para>
        </summary><param name="name">Name of the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckExpression(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckExpressionAsync(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckExpressionAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if a given expression is valid.</para>
        </summary><param name="expr">Expression to check.</param><param name="labels">List of labels.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckNumberOrExpression(System.String)">
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckNumberOrExpressionAsync(System.String)">
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckNumberOrExpressionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckNumberOrExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if:</para>
          <para>* a given expression is valid</para>
          <para>* a number is correct according to the locale.</para>
        </summary><param name="expr">Expression to check.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddAlternateState(System.String)">
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddAlternateStateAsync(System.String)">
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddAlternateStateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds an alternate state in the app. </para>
          <para>You can create multiple states within a Qlik Sense app and apply these states to specific objects within the app. Objects in a given state are not affected by user selections in the other states.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveAlternateState(System.String)">
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveAlternateStateAsync(System.String)">
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.RemoveAlternateStateAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes an alternate state in the app.</para>
        </summary><param name="stateName">Name of the alternate state.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericBookmark(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericBookmarkAsync(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericBookmarkAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a bookmark.</para>
        </summary><param name="prop">Information about the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericBookmark(System.String)">
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericBookmarkAsync(System.String)">
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DestroyGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericBookmark(System.String)">
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericBookmarkAsync(System.String)">
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ApplyGenericBookmark(System.String)">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ApplyGenericBookmarkAsync(System.String)">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ApplyGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ApplyGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><param name="id">Identifier of the bookmark</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericBookmark(System.String)">
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericBookmarkAsync(System.String)">
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericBookmarkAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CloneGenericBookmarkAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clones a bookmark.</para>
        </summary><param name="id">Identifier of the object to clone</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddFieldFromExpression(System.String,System.String)">
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddFieldFromExpressionAsync(System.String,System.String)">
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddFieldFromExpressionAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AddFieldFromExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Adds a field on the fly.</para>
          <para>The expression of a field on the fly is persisted but not its values. </para>
        </summary><param name="name">Name of the field.</param><param name="expr">Expression value.
                            It is not possible to use all aggregation functions. For example, you cannot add a field on the fly with an expression that uses the Sum or Count aggregation functions.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldOnTheFlyByName(System.String)">
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldOnTheFlyByNameAsync(System.String)">
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldOnTheFlyByNameAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFieldOnTheFlyByNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="readableName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAllInfos">
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAllInfosAsync">
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAllInfosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAllInfosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier and the type of any generic object in the app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Resume">
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ResumeAsync">
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ResumeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Resumes the app as the user left it.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AbortModal(System.Boolean)">
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AbortModalAsync(System.Boolean)">
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.AbortModalAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Aborts any selection mode in an app. For more information about selection mode, see BeginSelections method.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Publish(System.String,System.String)">
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.PublishAsync(System.String,System.String)">
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.PublishAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes an app. The published app can have a different name than the original app.</para>
          <para> All app objects are published. Generic objects, bookmarks, dimensions and measures inside the app are published.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
          <para>An app can only be published once and cannot be published to more than one stream.</para>
        </summary><param name="streamId">Identifier of the stream.</param><param name="name">Name of the published app.
                            This parameter is optional. If this parameter is not set, the engine automatically gives a new name to the published app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMatchingFields(System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMatchingFieldsAsync(System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMatchingFieldsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMatchingFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.NxMatchingFieldMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves any fields that match all or one of the specified tags in the data model of an app.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="tags">List of tags.
                            The GetMatchingFields method looks for fields that match one or all of the tags in this list, depending on the value of qMatchingFieldMode.</param><param name="matchingFieldMode">Matching field mode.
                            This parameter is optional.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.FindMatchingFields(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.FindMatchingFieldsAsync(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.FindMatchingFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.FindMatchingFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves any fields that belong to the same archipelago as the specified field and that match at least one of the specified tags.</para>
          <para>Tags set by Qlik Sense are prefixed by the $ sign. </para>
        </summary><param name="fieldName">Name of the field.
                            This method looks for fields that belong to the same archipelago as this specified field.
                            &amp;#160;</param><param name="tags">List of tags.
                            This method looks for fields that match at least one of the tags in this list.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.Scramble(System.String)">
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ScrambleAsync(System.String)">
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ScrambleAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="fieldName" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SaveObjects">
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SaveObjectsAsync">
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SaveObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Saves all objects that were modified in the app. </para>
          <para>Data from the data model are not saved.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAssociationScores(System.String,System.String)">
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAssociationScoresAsync(System.String,System.String)">
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAssociationScoresAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetAssociationScoresAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Computes a set of association scores for each pair of fields between two given tables that have been loaded in an app.</para>
          <para>When a table contains some synthetic keys, all fields in the synthetic key tables are analyzed against fields in other tables. To denote that a field is a synthetic key, the field name is prefixed by [Synthetic Key]:.</para>
        </summary><param name="table1">Name of the first table.</param><param name="table2">Name of the second table.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMediaList">
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMediaListAsync">
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMediaListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetMediaListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the media files.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetContentLibraries">
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetContentLibrariesAsync">
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetContentLibrariesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetContentLibrariesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the content libraries.</para>
          <para>To differentiate a global content library from an app specific content library, you can check the property qAppSpecific. If this property is set to true, it means that the content library is app specific.</para>
          <para>There is always one specific content library per app.</para>
          <para>** Qlik Sense
             **</para>
          <para>Returns the global content libraries and the app specific content library.</para>
          <para>When using Qlik Sense, you can have more than one global content library. The global content libraries are common to all apps in the Qlik Sense repository.</para>
          <para>By default, there is one global content library named Default.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>Returns the global content library and the app specific content library from the disk.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLibraryContent(System.String)">
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLibraryContentAsync(System.String)">
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLibraryContentAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetLibraryContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the content of a library.</para>
          <para>** Global content library **</para>
          <para>In Qlik Sense Desktop, the content files are retrieved from:</para>
          <para>%userprofile%\Documents\Qlik\Sense\Content\Default
            </para>
          <para>In Qlik Sense Enterprise, the content files are retrieved from the Qlik Sense repository.</para>
          <para>** App specific content library **</para>
          <para>The embedded files are returned.</para>
        </summary><param name="name">Name of the content library.
                            It corresponds to the property qContentLibraryListItem/qName returned by the GetContentLibraries method.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadEx(Qlik.Engine.DoReloadExParams)">
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadExAsync(Qlik.Engine.DoReloadExParams)">
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadExAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.DoReloadExParams)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DoReloadExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.DoReloadExParams)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reloads the script that is set in an app and returns the path to the script log file.</para>
          <para>A log file is created per reload.</para>
        </summary><param name="params">This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackCount">
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackCountAsync">
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackCountAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.BackCountAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the number of entries on the Back stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardCount">
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardCountAsync">
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardCountAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ForwardCountAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the number of entries on the Forward stack.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetSetAnalysis(System.String,System.String)">
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetSetAnalysisAsync(System.String,System.String)">
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetSetAnalysisAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetSetAnalysisAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="stateName" /><param name="bookmarkId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptEx">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptExAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptExAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetScriptExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariables(Qlik.Engine.VariableListDef)">
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariablesAsync(Qlik.Engine.VariableListDef)">
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariablesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.VariableListDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetVariablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.VariableListDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="listDef" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ExpandExpression(System.String)">
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ExpandExpressionAsync(System.String)">
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ExpandExpressionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ExpandExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="expression" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchSuggest(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchSuggestAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchSuggestAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchSuggestAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns search terms suggestions.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchAssociations(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchAssociationsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchAssociationsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchAssociationsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>The search results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SelectAssociations(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SelectAssociationsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SelectAssociationsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all search hits for a specified group.</para>
          <para>The results depend on the search context. </para>
          <para>See: SearchCombinationOptions
            </para>
        </summary><param name="options">Information about the search fields and the search context.</param><param name="terms">List of terms to search for.</param><param name="matchIx">Index (value of qId) of the search result to select.</param><param name="softLock">This parameter is deprecated and should not be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchResults(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchResultsAsync(Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchResultsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchResultsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchCombinationOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the search matches for one or more search terms.</para>
          <para>Search results are organized in search groups. The type of search group indicates where the search matches come from (from data for example).</para>
          <para>Each search group contains search results that correspond to a combination of search terms.</para>
          <para>For example, if the search terms are organic, pasta , and America, the possible combination of search groups are:</para>
          <para>* organic</para>
          <para>* pasta</para>
          <para>* America</para>
          <para>* organic, pasta, America</para>
          <para>* organic, pasta</para>
          <para>* organic, America</para>
          <para>* pasta, America</para>
          <para>For every search group, there are one or more search group items. Each subgroup item contains results that correspond to an item type (for example a field).</para>
          <para>For every search group item, there are one or several search matches. The position of the match in each search result is given.</para>
        </summary><param name="options">Information about the search combinations.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchObjects(Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchObjectsAsync(Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchObjectsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SearchObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.SearchObjectOptions,System.Collections.Generic.IEnumerable{System.String},Qlik.Engine.SearchPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the generic objects corresponding to one or more search terms. The search is performed within the title, subtitle, footnote and type. In addition, associated dimension values are also searched in. For example, if the country “Japan” is selected and the object contains the dimension City, the object will appear in the results for “Osaka” but not for “Johannesburg”. The generic objects with the following types will never appear in the results: slideitem, sheet, story, slide, masterobject, snapshot, LoadModel, appprops and searchhistory.</para>
        </summary><param name="options">Information about attributes.</param><param name="terms">Terms to search for.</param><param name="page">Array of pages to retrieve.
 
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScript(System.String)">
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScriptAsync(System.String)">
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetScriptAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets values in script. </para>
        </summary><param name="script">Script content</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckScriptSyntax">
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckScriptSyntaxAsync">
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckScriptSyntaxAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CheckScriptSyntaxAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks the syntax of a script. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFavoriteVariables">
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFavoriteVariablesAsync">
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFavoriteVariablesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFavoriteVariablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the variables that are tagged as favorite.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFavoriteVariables(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFavoriteVariablesAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SetFavoriteVariablesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Set some variables as favorite.</para>
        </summary><param name="names">Variables to set as favorite.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetIncludeFileContent(System.String)">
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetIncludeFileContentAsync(System.String)">
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetIncludeFileContentAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetIncludeFileContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the content of a file. </para>
        </summary><param name="path" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateConnection(Qlik.Engine.Connection)">
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateConnectionAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateConnectionAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.CreateConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a connection. A connection indicates from which data source, the data should be taken.</para>
        </summary><param name="connection">Information about the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ModifyConnection(System.String,Qlik.Engine.Connection,System.Boolean)">
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ModifyConnectionAsync(System.String,Qlik.Engine.Connection,System.Boolean)">
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.ModifyConnectionAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.Connection,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Updates a connection.</para>
          <para>The identifier of a connection cannot be updated. qType cannot be modified with the ModifyConnection method.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="connection">Information about the connection.
                            Properties that can be updated.
                            This parameter is mandatory.</param><param name="overrideCredentials">Set this parameter to true to override the user name and password.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DeleteConnection(System.String)">
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DeleteConnectionAsync(System.String)">
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.DeleteConnectionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Deletes a connection.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. The AttachedFiles connection can only be removed by the administrator of the system.</para>
        </summary><param name="connectionId">Identifier of the connection to remove.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnection(System.String)">
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionAsync(System.String)">
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves a connection and returns:</para>
          <para>* The creation time of the connection </para>
          <para>* The identifier of the connection</para>
          <para>* The type of the connection</para>
          <para>* The name of the connection</para>
          <para>* The connection string</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnections">
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionsAsync">
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetConnectionsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the connections in an app.</para>
          <para>In Qlik Sense Enterprise, there is an additional file connection named AttachedFiles. This connection is stored in the Qlik Sense repository.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseInfo(System.String)">
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseInfoAsync(System.String)">
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseInfoAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gives information about an ODBC, OLEDB or CUSTOM connection. See GetDatabaseInfo method for more details.</para>
        </summary><param name="connectionId">Name of the connection
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabases(System.String)">
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabasesAsync(System.String)">
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabasesAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabasesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the databases inside a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseOwners(System.String,System.String)">
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseOwnersAsync(System.String,System.String)">
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseOwnersAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseOwnersAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the owners of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTables(System.String,System.String,System.String)">
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablesAsync(System.String,System.String,System.String)">
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablesAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables inside a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTableFields(System.String,System.String,System.String,System.String)">
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTableFieldsAsync(System.String,System.String,System.String,System.String)">
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTableFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTableFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the fields inside a table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection
                            This parameter is mandatory.</param><param name="database">Name of the database
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablePreview(System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablePreviewAsync(System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablePreviewAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetDatabaseTablePreviewAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,Qlik.Engine.FilterInfo)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of the specified table of a database for a ODBC, OLEDB or CUSTOM connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="database">Name of the database.
                            This parameter is optional.
                            If qDatabase is not set then qOwner must be set.</param><param name="owner">Owner of the database.
                            This parameter is optional.
                            If qOwner is not set then qDatabase must be set.</param><param name="table">Name of the table.
                            This parameter is mandatory.</param><param name="conditions" /><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFolderItemsForConnection(System.String,System.String)">
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFolderItemsForConnectionAsync(System.String,System.String)">
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFolderItemsForConnectionAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFolderItemsForConnectionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the items for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Relative path of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GuessFileType(System.String,System.String)">
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GuessFileTypeAsync(System.String,System.String)">
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GuessFileTypeAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GuessFileTypeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Guesses the data format for a given file.</para>
          <para>Recognized file formats are:</para>
          <para>* CSV for Delimited</para>
          <para>* FIX for Fixed Record</para>
          <para>*
                    DIF for Data Interchange Format
                </para>
          <para>* EXCEL_BIFF for Microsoft Excel (XLS)</para>
          <para>* EXCEL_OOXML for Microsoft Excel (XLSX)</para>
          <para>* HTMLfor HTML</para>
          <para>* QVD for QVD file</para>
          <para>* XML for XML</para>
          <para>* QVX for QVX file</para>
          <para>* JSON for JSON format</para>
          <para>*
                    KML for KML file
                </para>
        </summary><param name="connectionId">Identifier of the connection file.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTables(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesAsync(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file.
                            This parameter is mandatory.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTableFields(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTableFieldsAsync(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTableFieldsAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTableFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the fields of a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablePreview(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablePreviewAsync(System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablePreviewAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablePreviewAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the values in a table for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><param name="table">Name of the table
                            This parameter must be set for XLS, XLSX, HTML&amp;#160;and XML files.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesEx(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesExAsync(System.String,System.String,Qlik.Engine.FileDataFormat)">
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesExAsync(Qlik.Engine.AsyncHandle,System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.GetFileTablesExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,Qlik.Engine.FileDataFormat)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the tables and fields of a JSON or XML file for a folder connection.</para>
        </summary><param name="connectionId">Identifier of the connection.
                            This parameter is mandatory.</param><param name="relativePath">Path of the connection file
                            This parameter is optional.</param><param name="dataFormat">Type of the file.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SendGenericCommandToCustomConnector(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SendGenericCommandToCustomConnectorAsync(System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SendGenericCommandToCustomConnectorAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IApp.SendGenericCommandToCustomConnectorAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sends a generic command to a custom connector.</para>
          <para>For more information on the commands that can be sent to a custom connector, see the QVX SDK help.</para>
        </summary><param name="provider">Connector file name.
                            Command to be executed by the connector.</param><param name="command">One of:
                             
                                 
JsonRequest
 
                                GetCustomCaption
                                IsConnected
                                DisableQlikViewSelectButton
                                HaveStarField</param><param name="method">Method name to be used within the command.
                            The available methods depend on the chosen connector.</param><param name="parameters">Parameters of the command.
 
                            No parameters are required.
 
                            This parameter is optional.</param><param name="appendConnection">Name of the connection.
                            This parameter is optional.</param><returns />
        </member>
        <member name="T:Qlik.Engine.IGenericObject">
            <summary>This class describes all the methods that apply at generic object level.</summary>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CreateChild``1(Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="prop">Properties of the child to create</param>
            <param name="propForThis">Properties of the parent object (this)</param>
            <returns>The created object as type T</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CreateChildAsync``1(Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="prop">Properties of the child to create</param>
            <param name="propForThis">Properties of the parent object (this)</param>
            <returns>A task with the created object as type T</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CreateChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.GenericObjectProperties,Qlik.Engine.GenericObjectProperties)">
            <summary>
            Creation of child generic object
            </summary>
            <typeparam name="T">Type of the child to create</typeparam>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <param name="prop">Properties of the child to create</param>
            <param name="propForThis">Properties of the parent object (this)</param>
            <returns>A task with the created object as type T</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefCount">
            <summary>
            Retrieves the total number of HyperCube/ListObject definitions contained in this generic object
            </summary>
            <returns>number of HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefCountAsync">
            <summary>
            Retrieves the total number of HyperCube/ListObject definitions contained in this generic object asynchronously
            </summary>
            <returns>Task that will resolve the number of HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.IndexOfDefPath(System.String)">
            <summary>
            Converts an existing path to its equivalent index value
            </summary>
            <param name="defPath">path to HyperCube/ListObject definition</param>
            <returns>index to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.IndexOfDefPathAsync(System.String)">
            <summary>
            Converts an existing path to its equivalent index value asynchronously
            </summary>
            <param name="defPath">path to HyperCube/ListObject definition</param>
            <returns>Task that resolves the index to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.IndexOfDefPath(System.String[])">
            <summary>
            Converts existing paths to their equivalent index values
            </summary>
            <param name="defPaths">array of paths to HyperCube/ListObject definitions</param>
            <returns>array with indexes to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.IndexOfDefPathAsync(System.String[])">
            <summary>
            Converts existing paths to their equivalent index values asynchronously
            </summary>
            <param name="defPaths">array of paths to HyperCube/ListObject definitions</param>
            <returns>Task that resolves an array with indexes to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefPathAtIndex(System.Int32)">
            <summary>
            Converts an existing index to its equivalent path value
            </summary>
            <param name="index">index to HyperCube/ListObject definition</param>
            <returns>path to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefPathAtIndexAsync(System.Int32)">
            <summary>
            Converts an existing index to its equivalent path value asynchronously
            </summary>
            <param name="index">index to HyperCube/ListObject definition</param>
            <returns>Task that resolves a path to HyperCube/ListObject definition</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefPathAtIndex(System.Int32[])">
            <summary>
            Converts existing index values to their equivalent path values
            </summary>
            <param name="indexes">array with indexes to HyperCube/ListObject definitions</param>
            <returns>array of paths to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DefPathAtIndexAsync(System.Int32[])">
            <summary>
            Converts existing index values to their equivalent path values asynchronously
            </summary>
            <param name="indexes">array with indexes to HyperCube/ListObject definitions</param>
            <returns>Task that resolves an array of paths to HyperCube/ListObject definitions</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubePager(System.String)">
            <summary>
            Get a hypercube paging interface for a hypercube at the specified path.
            </summary>
            <param name="path">The property path for the hypercube.</param>
            <returns>The <see cref="T:Qlik.Engine.HyperCubePager"/> instance.</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetAllHyperCubePagers">
            <summary>
            Get hypercube paging interfaces for all hypercubes in the object.
            </summary>
            <returns>The set of <see cref="T:Qlik.Engine.HyperCubePager"/> instances.</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetListObjectPager(System.String)">
            <summary>
            Get a list object paging interface for a list box at the specified path.
            </summary>
            <param name="path">The property path for the list object.</param>
            <returns>The <see cref="T:Qlik.Engine.ListObjectPager"/> instance.</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetAllListObjectPagers">
            <summary>
            Get list object paging interfaces for all list objects in the object.
            </summary>
            <returns>The set of <see cref="T:Qlik.Engine.ListObjectPager"/> instances.</returns>
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated. A GetLayout call on a generic object, returns up to one level down in the hierarchy.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetListObjectData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetListObjectDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetListObjectDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetListObjectDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a list object.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.</param><param name="pages">Array of pages you are interested in.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a chart, a table, or a scatter plot. It is possible to retrieve specific pages of data.</para>
          <para>This method does not apply to stacked tables.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeReducedData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeReducedDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeReducedDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeReducedDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32,Qlik.Engine.NxDataReductionMode)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Reduces the data of a bar chart, a line chart or a scatter plot chart and retrieves them.</para>
          <para>The reduction is dependent on the zoom factor (parameter qZoomFactor) and on the reduction mode.</para>
          <para>This method can be used to create mini charts.</para>
          <para>** Bar chart or line chart data reduction **</para>
          <para>For the data reduction to happen, the following conditions must be fulfilled:</para>
          <para>* The values cannot fit in the defined page (parameter qPages).</para>
          <para>* The zoom factor is not 0 (parameter qZoomFactor).</para>
          <para>* The reduction mode must be set to D1.</para>
          <para> The reduction algorithm keeps the shape of the visualizations and works whatever the number of dimensions in the chart. The global profile of the chart is reduced, and not only a specific dimension. A visualization that has been reduced contains fewer values but its shape is the same. Data of all types can be reduced. Therefore it is hard to relate the values before and after a reduction especially when reducing string values.</para>
          <para>Example:  </para>
          <para>If you have a chart with 1 million data, and you have set the zoom factor to 5, the GetHyperCubeReducedData method reduces the chart and retrieves 200 000 data.</para>
          <para>** Scatter plot chart data reduction **</para>
          <para>The reduction mode must be set to C.</para>
          <para>This reduction mechanism follows the 2D K-Means algorithm. Data are reduced into a number of clusters. Each data is assigned to a specific centroid. </para>
          <para>The number of centroids can be defined in the parameter qZoomFactor.</para>
          <para>** Scatter plot chart resolution reduction **</para>
          <para>The reduction mode must be set to S.</para>
          <para>The resolution is reduced according to the zoom factor (parameter qZoomFactor).</para>
          <para>Example:  </para>
          <para>If you have a scatter plot chart and the zoom factor is set to 2, the scatter plot chart resolution is reduced by 4.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.</param><param name="pages">Array of pages.</param><param name="zoomFactor">Defines the zoom factor.
                            If set to -1, the engine decides of the zoom factor.
                            • If the reduction mode is D1 or S, the zoom factor is 2ⁿ. If the zoom factor is 5, the data are reduced by a factor 32.
                            • If the reduction mode is C, the zoom factor defines the number of centroids.</param><param name="reductionMode">Defines the reduction mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubePivotData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubePivotDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubePivotDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubePivotDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeStackData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeStackDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeStackDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeStackDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells at outer level.
                            This parameter is optional. The default value is 10 000.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeContinuousData(System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeContinuousDataAsync(System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeContinuousDataAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeContinuousDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.NxContinuousDataOptions,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.</para>
          <para>Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="options">Options.NbrPoints is number of bins for binning.
                            Options.MaxNbrTicks - maximum number of ticks.</param><param name="reverseSort" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeTreeData(System.String,Qlik.Engine.NxTreeDataOption)">
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeTreeDataAsync(System.String,Qlik.Engine.NxTreeDataOption)">
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeTreeDataAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.NxTreeDataOption)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeTreeDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.NxTreeDataOption)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>A paging method to retrieve data for nodes in a tree structure as opposed to area.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            This parameter is mandatory.</param><param name="nodeOptions">Specifies all the paging filters needed to define the tree to be fetched.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeBinnedData(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeBinnedDataAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeBinnedDataAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetHyperCubeBinnedDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},Qlik.Engine.NxViewPort,System.Collections.Generic.IEnumerable{Qlik.Engine.NxDataAreaPage},System.Int32,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>This method supports data binning.</para>
          <para>When a generic object with two or three measures and one dimension contains a lot of data, groups of points (i.e cells) can be rendered instead of points. </para>
          <para>A zone of interest can be refined (for zooming in) up to a maximum refinement level (set in the qQueryLevel parameter) or coarsened (for zoom out).</para>
          <para>The grid of cells is adaptive (not static), meaning that it adapts to different length scales. </para>
          <para>The GetHyperCubeBinnedData method gives information about the adaptive grid and the values of the generic object.</para>
          <para>The number of points in a cell and the coordinates (expressed in the measure range) of each cell are returned.</para>
          <para>Dimension values and measure values are rendered at point level (highest detailed level).</para>
          <para>The generic object should contain two or three measures and one dimension. When the refinement is high, the first two measures are represented on the x-axis and on the y-axis, while the third measure is visualized as color or point size.</para>
        </summary><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="pages">Array of pages to retrieve.
                            Since the generic object contains two measures and one dimension, qWidth should be set to 3.
                            If the value of a measure is Null, the value cannot be rendered. Therefore, the number of elements rendered in a page can be less than the number defined in the property qHeight.
                            This parameter is mandatory.</param><param name="viewport">Defines the canvas and the zoom level.
                            This parameter is not yet used and is optional.</param><param name="dataRanges">Range of the data to render.
                            This range applies to the measure values.
                            The lowest and highest values of a measure can be retrieved by using the GetLayout method ( in /qHyperCube/qMeasureInfo).
                            This parameter is mandatory.</param><param name="maxNbrCells">Maximum number of cells in the grid.
                            This parameter is mandatory.</param><param name="queryLevel">Level of details. The higher the level, the more detailed information you get (zoom-in).
                            When the number of points to render falls below a certain threshold, the values are no longer rendered as cells but as points.
                            The query level should be no greater than 20.
                            This parameter is optional.</param><param name="binningMethod">Selects the algorithm.
                            The default value is 0.
                            One of:
                             
                                0: Adaptive grid</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch.</para>
          <para> In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. </para>
          <para>Properties that are not persistent are called soft properties. Once the engine session is over, soft properties are cleared.</para>
          <para>Soft properties apply only to generic objects.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><param name="softPatch">If set to true, it means that the properties to be applied are not persistent. The patch is a soft patch.
                            This parameter is optional. Default is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSoftPatches">
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSoftPatchesAsync">
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSoftPatchesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the soft properties of a generic object. </para>
          <para>For more information on how to add soft properties to a generic object, see ApplyPatches method.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetProperties(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetPropertiesAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a generic object.</para>
        </summary><param name="prop">Information about the generic object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetProperties">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetPropertiesAsync">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>Because it is not mandatory to set all properties when you define an object, the GetProperties method may show properties that were not set. In that case, default values are given.</para>
          <para>If the object contains some soft properties, the soft properties are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the object is linked to another object, the properties of the linking object are not returned by the GetProperties method. Use the GetEffectiveProperties method instead.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetEffectiveProperties">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetEffectivePropertiesAsync">
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetEffectivePropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetEffectivePropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier, the type and the properties of the object.</para>
          <para>If the object contains some soft properties, the soft properties are returned.</para>
          <para>If the object is linked to another object, the properties of the linking object are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetFullPropertyTree(Qlik.Engine.GenericObjectEntry)">
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetFullPropertyTreeAsync(Qlik.Engine.GenericObjectEntry)">
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetFullPropertyTreeAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectEntry)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
          <para>If the SetFullPropertyTree method is asked to set some properties to a child that does not exist, it creates the child.</para>
          <para>The type of an object cannot be updated.</para>
        </summary><param name="propEntry">Information about the generic object entry.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetFullPropertyTree">
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetFullPropertyTreeAsync">
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetFullPropertyTreeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetFullPropertyTreeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of:</para>
          <para>* a generic object</para>
          <para>* the children of the generic object</para>
          <para>* the bookmarks/embedded snapshots of the generic object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSelections(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSelectionsAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ClearSelectionsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the selections in a dimension of a visualization.</para>
        </summary><param name="path">Path to the definition of the visualization.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Array of dimension numbers or indexes. The selections are cleared in the specified dimensions.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, all dimensions are cleared.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExportData(Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExportDataAsync(Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExportDataAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExportDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.NxExportFileType,System.String,System.String,Qlik.Engine.NxExportState)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Exports the data of any generic object to an Excel file or a open XML file. If the object contains excluded values, those excluded values are not exported.</para>
          <para>This API has limited functionality and will not support CSV export from all types of objects. Consider using Excel export instead. Treemap and bar chart are not supported.</para>
        </summary><param name="fileType">Type of the file to export.
                            This parameter is mandatory.</param><param name="path">Path to the definition of the object to be exported.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory if the file type is CSV_C or CSV_T.</param><param name="fileName">Name of the exported file after download from browser.
                            This parameter is optional and only used in Qlik Sense Desktop.</param><param name="exportState">Defines the values to be exported.
                            This parameter is optional. The default value is A.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectValues(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectValuesAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Makes single selections in dimensions.</para>
          <para>This method applies to list objects only.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="values">Element numbers to select.
                            You can select multiple values; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is optional.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectPossible(System.String,System.Boolean)">
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectPossibleAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectPossibleAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectPossibleAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all possible values of a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectExcluded(System.String,System.Boolean)">
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectExcludedAsync(System.String,System.Boolean)">
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectExcludedAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectExcludedAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Inverts the current selections in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAlternative(System.String,System.Boolean)">
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAlternativeAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAlternativeAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAlternativeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all alternative values in a specific field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>If a field contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAll(System.String,System.Boolean)">
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAllAsync(System.String,System.Boolean)">
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAllAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectAllAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all values of a field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qListObjectDef.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectContinuousRange(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectContinuousRangeAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectContinuousRangeAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectListObjectContinuousRangeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.Range},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SearchListObjectFor(System.String,System.String)">
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SearchListObjectForAsync(System.String,System.String)">
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SearchListObjectForAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SearchListObjectForAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Searches for a string in a list object. </para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results can be displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="match">Search string.
                            Wild card characters are allowed. The search is not case sensitive.
                            Examples:
                             
                                P*U*: retrieves only values that start with P and contain U
                                P U S: retrieves values that start with P, U or S</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AbortListObjectSearch(System.String)">
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AbortListObjectSearchAsync(System.String)">
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AbortListObjectSearchAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Aborts the results of a search in a list object.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para> After an abort on a list object search, the GetLayout method does not return any more search results but it does return the values in the field.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AcceptListObjectSearch(System.String,System.Boolean,System.Boolean)">
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AcceptListObjectSearchAsync(System.String,System.Boolean,System.Boolean)">
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.AcceptListObjectSearchAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Accept the results of a search in a list object. The search results become selected in the field.</para>
          <para>This method applies to list objects (objects with one dimension).</para>
          <para>The search results are displayed using the GetLayout method.</para>
        </summary><param name="path">Path to the definition of the list object.
                             
 
For example, /qListObjectDef.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandLeft(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandLeftAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandLeftAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix to expand.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandTop(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandTopAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ExpandTopAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Expands the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be expanded.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it expands all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseLeft(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseLeftAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseLeftAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Collapses the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index in the data matrix.
                            Indexing starts from 0.</param><param name="col">Column index. The index is based on the left dimension indexes.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseTop(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseTopAsync(System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CollapseTopAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Collapses the top dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.</para>
          <para> In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false. </para>
        </summary><param name="path">Path to the definition of the object to be collapsed
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="row">Row index. The index is based on the top dimension indexes.
                            Indexing starts from 0.</param><param name="col">Column index in the data matrix.
                            Indexing starts from 0.</param><param name="all">If set to true, it collapses all cells.
                            Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DrillUp(System.String,System.Int32,System.Int32)">
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DrillUpAsync(System.String,System.Int32,System.Int32)">
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DrillUpAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>You can use the drillUp method with any object that contains a drill-down group as a dimension.</para>
          <para>This method allows you to move between different levels of information (from a detailed level to a less detailed level of information). You can go back to previous visualizations up to the highest level of the hierarchy.</para>
          <para>If you try to drill up more steps than there are available levels, the first level of the hierarchy is displayed.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index starting from 0
                            The default value is 0.</param><param name="nbrSteps">Number of steps you want to drill up.
                            The default value is 0.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.Lock(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.LockAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.LockAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks the selected values of a generic object.</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers or dimension indexes where the lock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the selected values in all dimensions are locked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.Unlock(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnlockAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnlockAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks the selected values of a generic object if the target (or handle ) is a generic object</para>
        </summary><param name="path">Path to the definition of the object.
                             
 
For example, /qListObjectDef.</param><param name="colIndices">Dimension numbers/indexes where the unlock should apply.
                            Dimension numbers/indexes start from 0.
                            This parameter is optional. If this parameter is not set, the locked values in all dimensions are unlocked.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeValues(System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeValuesAsync(System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Int32,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in one dimension.</para>
          <para>The values are identified by their element numbers.</para>
          <para>This method applies to charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="dimNo">Dimension number or index to select.
                            Dimension numbers/index start from 0.
                            This parameter is mandatory.</param><param name="values">Element numbers of the field to select.
                            You can select multiple elements; the separator is the comma.
                            This parameter is mandatory.</param><param name="toggleMode">Set to true to toggle.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeCells(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeCellsAsync(System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeCellsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeCellsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Makes selections in multiple dimensions and measures.</para>
          <para> This method applies to hypercubes, such as bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="rowIndices">Array of row indexes&amp;#160;to select, starting from 0.
                            If the array is empty [ ], all rows are selected.
                            This parameter is mandatory.</param><param name="colIndices">Indexes of the columns to select, starting from 0.
                            A column corresponds to a dimension or a measure depending on the definition of the hypercube.
                            Example:
                             If the hypercube has two dimensions and one measure:
                             
                                 [0] selects the first column (i.e the first dimension)
                                [1] selects the second column (i.e the second dimension)
                                [2] selects the third column (i.e the measure)
                             
                            If the array is empty [ ], all columns are selected.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            This parameter is mandatory.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectPivotCells(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectPivotCellsAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectPivotCellsAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectPivotCellsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxSelectionCell},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>This method only applies to hypercubes that are not represented as straight tables. The parameter qMode in HyperCubeDef must be set either to P or K.</para>
          <para>** Pivot table **</para>
          <para>Makes selections in the top or left dimension cells of a pivot table or in the data matrix. Only expanded dimensions can be selected.</para>
          <para>** Stacked table **</para>
          <para>Makes selections in the left dimension cells of a stacked table or in the data matrix.</para>
          <para>There is no top dimensions in a stacked table. A stacked table can only contain one measure.</para>
          <para>** Example of a pivot table **</para>
          <para>In the representation above:</para>
        </summary><param name="path">Path to the definition of the object
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="selections">Information about the selections to perform</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
 
This parameter is optional.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.RangeSelectHyperCubeValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.RangeSelectHyperCubeValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.RangeSelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.RangeSelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxRangeSelectInfo},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="columnsToSelect">Indicates which dimensions to select.
                            The dimensions numbering starts at 0 (first dimension is 0).
                            If the array is empty, all dimensions are selected.
                            This parameter is optional.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectHyperCubeValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectHyperCubeValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectHyperCubeValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectHyperCubeValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Make range selections in measures.</para>
          <para> This method applies to hypercubes. For example, bar charts, tables and scatter plots.</para>
        </summary><param name="path">Path to the definition of the object to be selected.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Ranges of selection.
                            This parameter is mandatory.</param><param name="orMode">Applies to hypercubes with multiple measures.
                            If set to true, it means that at least one of the measures must be in the range of selections for the group of measures to be selected.
                            If set to false, it means that all measures must be in the range of selections for the group of measures to be selected.
                            This parameter is optional. The default value is false.</param><param name="deselectOnlyOneSelected">Set this parameter to true to unselect the last single selected value. There must be only one selected value in the field.
                            The default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectTreeDataValues(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectTreeDataValuesAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectTreeDataValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.MultiRangeSelectTreeDataValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxTreeMultiRangeSelectInfo},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path" /><param name="ranges" /><param name="orMode" /><param name="deselectOnlyOneSelected" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeContinuousRange(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeContinuousRangeAsync(System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeContinuousRangeAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SelectHyperCubeContinuousRangeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{Qlik.Engine.NxContinuousRangeSelectInfo},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="path">Path to the definition of the object.
                            For example, /qHyperCubeDef.
                            This parameter is mandatory.</param><param name="ranges">Selects ranges in a hypercube in (Ranges[N].Min,Ranges[N].Max) intervals.
                            If either Ranges[N].MinInclEq or Ranges[N].MaxInclEq, or both flags are set to true then Min and Max values will be selected.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChild(System.String)">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildAsync(System.String)">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><param name="id">Identifier of the object.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetParent">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetParentAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetParentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetParentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildInfos">
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildInfosAsync">
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildInfosAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetChildInfosAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the identifier and the type for each child in an app object. If the child contains extra properties in qInfos,these properties are returned.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyChild(System.String,Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyChildAsync(System.String,Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyChildAsync(Qlik.Engine.AsyncHandle,System.String,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyChildAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Removes a child object.</para>
          <para>It is possible to update the properties of the child's parent at the same time that the child is removed. Both operations are performed by the same call.</para>
          <para>Removing a linked object, invalidate the linking object. </para>
        </summary><param name="id">Identifier of the child to remove.
                            This parameter is mandatory.</param><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyAllChildren(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyAllChildrenAsync(Qlik.Engine.GenericObjectProperties)">
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.DestroyAllChildrenAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericObjectProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Removes all children and all children to the children on an object.</para>
        </summary><param name="propForThis">This parameter is optional.
                            Identifier of the parent's object and property to update.
                            Should be set to update the properties of the parent's object at the same time the child is created.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetChildArrayOrder(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetChildArrayOrderAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.SetChildArrayOrderAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the order of the children in a generic object. </para>
          <para>To change the order of the children in a generic object, the identifiers of all the children must be included in the list of the identifiers (in qIds).</para>
        </summary><param name="ids">List of the children identifiers.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CopyFrom(System.String)">
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CopyFromAsync(System.String)">
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.CopyFromAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Copies the properties of a generic object and its children.</para>
          <para>The source object is specified by the parameter qFromId and the destination object is referenced by its handle.</para>
          <para>The identifier of the destination object is the same as before the copy takes place.</para>
        </summary><param name="fromId">Identifier of the object to copy.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.BeginSelections(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.BeginSelectionsAsync(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.BeginSelectionsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Begins the selection mode. The app enters the modal state. The specified object enters the selection mode and a modal window is opened. The selection mode can apply to only one object in an app at a time. </para>
          <para>When a visualization is in selection mode, selections can be made in this visualization. The visualization is not sorted until the selection mode is ended. Once the selection mode is ended and if the selections are accepted, the visualization is sorted according to the sort criteria. For more information about:</para>
          <para>* Ending the selection mode, see EndSelections method.</para>
          <para>* The sort criteria, see ListObjectDef or HyperCubeDef.</para>
          <para>Example:  </para>
          <para>A sheet contains a list object and a chart. If the list object is in selection mode then the chart cannot be in selection mode. No selection on the chart can be made until the list object exits the selection mode.</para>
        </summary><param name="paths">List of the paths to the definition of the objects to enter selection mode.
                             
 
For example, /qListObjectDef.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EndSelections(System.Boolean)">
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EndSelectionsAsync(System.Boolean)">
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EndSelectionsAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Ends the selection mode on a visualization. The selections are accepted or aborted when exiting the selection mode, depending on the qAccept parameter value.</para>
        </summary><param name="accept">Set this parameter to true to accept the selections before exiting the selection mode.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ResetMadeSelections">
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ResetMadeSelectionsAsync">
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ResetMadeSelectionsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Resets all selections made in selection mode.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EmbedSnapshotObject(System.String)">
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EmbedSnapshotObjectAsync(System.String)">
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.EmbedSnapshotObjectAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Adds a snapshot to a generic object.</para>
          <para>Only one snapshot can be embedded in a generic object.</para>
          <para>If you embed a snapshot in an object that already contains a snapshot, the new snapshot overwrites the previous one.</para>
        </summary><param name="id">Identifier of the bookmark.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetSnapshotObject">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetSnapshotObjectAsync">
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetSnapshotObjectAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.GetSnapshotObjectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type of the object and the corresponding handle.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.Publish">
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.PublishAsync">
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnPublish">
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnPublishAsync">
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a generic object.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericObject.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="P:Qlik.Engine.IGenericObject.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericObject.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericObject.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.ExtendsId">
            <summary>Reference to property Layout.ExtendsId</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.HasSoftPatches">
            <summary>Reference to property Layout.HasSoftPatches</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.Error">
            <summary>Reference to property Layout.Error</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.SelectionInfo">
            <summary>Reference to property Layout.SelectionInfo</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObject.StateName">
            <summary>Reference to property Layout.StateName</summary>
        </member>
        <member name="T:Qlik.Engine.IHub">
            <summary>This class describes all the methods that apply at global level.</summary>
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgressAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Gives information about the progress of the DoReload and DoSave calls.
            asyncHandle corresponds to the identifier for the call.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <returns></returns>
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteractAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Engine can request user interactions only during script reload and when the reload is performed in debug mode
            (Debug is set to true when using the DoReload method).
             
            When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:
            - before executing a new script statement
            - when an error occurs while executing the script
            - when the script execution is finished.
             
            To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used.
            The engine waits for a response if the property UserInteractionWanted is set to true in the response of the GetProgress request.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <returns></returns>
        </member>
        <member name="M:Qlik.Engine.IHub.InteractDoneAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.InteractDef)">
            <summary>
            Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <param name="def"></param>
        </member>
        <member name="M:Qlik.Engine.IHub.CancelRequestAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Cancels an ongoing request. The request is stopped.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgress(Qlik.Engine.AsyncHandle)">
            <summary>
            Gives information about the progress of the DoReload and DoSave calls.
            asyncHandle corresponds to the identifier for the call.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <returns></returns>
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteract(Qlik.Engine.AsyncHandle)">
            <summary>
            Engine can request user interactions only during script reload and when the reload is performed in debug mode
            (Debug is set to true when using the DoReload method).
             
            When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:
            - before executing a new script statement
            - when an error occurs while executing the script
            - when the script execution is finished.
             
            To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used.
            The engine waits for a response if the property UserInteractionWanted is set to true in the response of the GetProgress request.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <returns></returns>
        </member>
        <member name="M:Qlik.Engine.IHub.InteractDone(Qlik.Engine.AsyncHandle,Qlik.Engine.InteractDef)">
            <summary>
            Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
            <param name="def"></param>
        </member>
        <member name="M:Qlik.Engine.IHub.CancelRequest(Qlik.Engine.AsyncHandle)">
            <summary>
            Cancels an ongoing request. The request is stopped.
            </summary>
            <param name="asyncHandle">Corresponds to the identifier for the call.</param>
        </member>
        <member name="E:Qlik.Engine.IHub.CommunicationError">
            <summary>
            Eventhandler for communication error
            </summary>
        </member>
        <member name="E:Qlik.Engine.IHub.CommunicationErrorEvent">
            <summary>
            Eventhandler for communication error
            </summary>
        </member>
        <member name="M:Qlik.Engine.IHub.AbortRequest(System.Int32)">
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AbortRequestAsync(System.Int32)">
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AbortRequestAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="requestId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AbortAll">
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AbortAllAsync">
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AbortAllAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets an abort flag on all pending and ongoing requests in the current engine session.</para>
          <para>* If an abort flag is set on a pending request, the request is aborted.</para>
          <para>* If an abort flag is set on an ongoing request, the engine checks to see if it is possible to abort the request.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgress(System.Int32)">
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgressAsync(System.Int32)">
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgressAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetProgressAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gives information about the progress of the DoReload and DoSave calls.</para>
          <para>For more information on DoReload and DoSave, see the DoReload method and DoSave method.</para>
        </summary><param name="requestId">Identifier of the DoReload or DoSave request or 0.
                            Complete information is returned if the identifier of the request is given.
                            If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QvVersion">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QvVersionAsync">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QvVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QvVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSVersion">
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSVersionAsync">
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the version number of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSName">
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSNameAsync">
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSNameAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OSNameAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the name of the operating system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QTProduct">
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QTProductAsync">
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QTProductAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.QTProductAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik product name.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppList">
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppListAsync">
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of apps.</para>
          <para>In Qlik Sense Enterprise:</para>
          <para>The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.</para>
          <para>In Qlik Sense Desktop:</para>
          <para>The apps are located in C:\Users\&lt;user name&gt;\Documents\Qlik\Sense\Apps.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteract(System.Int32)">
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteractAsync(System.Int32)">
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteractAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetInteractAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information on the user interaction that is requested by the engine.</para>
          <para>Engine can request user interactions only during script reload and when the reload is performed in debug mode (qDebug is set to true when using the DoReload method).</para>
          <para>When running reload in debug mode, the engine pauses the script execution to receive data about user interaction. The engine can pause:</para>
          <para>- before executing a new script statement</para>
          <para>- when an error occurs while executing the script</para>
          <para>- when the script execution is finished.</para>
          <para>To know if the engine is paused and waits for a response to an interaction request, the GetProgress method should be used. The engine waits for a response if the property qUserInteractionWanted is set to true in the response of the GetProgress request.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.InteractDone(System.Int32,Qlik.Engine.InteractDef)">
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.InteractDoneAsync(System.Int32,Qlik.Engine.InteractDef)">
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.InteractDoneAsync(Qlik.Engine.AsyncHandle,System.Int32,Qlik.Engine.InteractDef)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Informs the engine that a user interaction (which was earlier requested by the engine) was performed and indicates the engine what to do next.</para>
        </summary><param name="requestId">Identifier of the request.
                            Corresponds to the identifier of the DoReload request.</param><param name="def">User response to the current interaction.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAuthenticatedUser">
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAuthenticatedUserAsync">
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAuthenticatedUserAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAuthenticatedUserAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves information about the authenticated user.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppEx(System.String,System.String,System.String,System.String,System.String)">
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppExAsync(System.String,System.String,System.String,System.String,System.String)">
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppExAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppExAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an app and opens an engine session.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><param name="docName">Name of the app.
                            This parameter is mandatory.</param><param name="userName">Name of the user.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number
                            This parameter is optional.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetActiveDoc">
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetActiveDocAsync">
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetActiveDocAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetActiveDocAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the handle of the current app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AllowCreateApp">
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AllowCreateAppAsync">
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AllowCreateAppAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.AllowCreateAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether or not a user is able to create an app.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateApp(System.String,System.String)">
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppAsync(System.String,System.String)">
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an app.</para>
        </summary><param name="appName">Name of the app.
                            This parameter is mandatory.</param><param name="localizedScriptMainSection">Name of the first section in the script editor.
                            This parameter is optional.
                            The default value is Main.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.DestroyApp(System.String)">
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.DestroyAppAsync(System.String)">
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.DestroyAppAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.DestroyAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Deletes an app from the Qlik Sense repository or from the file system.</para>
          <para>** Qlik Sense Enterprise
             **</para>
          <para>In addition to being removed from the repository, the app is removed from the directory as well:</para>
          <para>&lt;installation_directory&gt;\Qlik\Sense\Apps
            </para>
          <para>The default installation directory is ProgramData.</para>
          <para>** Qlik Sense Desktop
             **</para>
          <para>The app is deleted from the directory %userprofile%\Documents\Qlik\Sense\Apps.</para>
        </summary><param name="appId">Identifier of the app to delete.
                            In Qlik Sense Enterprise, the identifier of the app is a GUID in the Qlik Sense repository.
                            In Qlik Sense Desktop, the identifier of the app is the name of the app, as defined in the apps folder %userprofile%\Documents\Qlik\Sense\Apps.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsDesktopMode">
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsDesktopModeAsync">
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsDesktopModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsDesktopModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether the user is working in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelRequest(System.Int32)">
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelRequestAsync(System.Int32)">
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelRequestAsync(Qlik.Engine.AsyncHandle,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Cancels an ongoing request. The request is stopped.</para>
        </summary><param name="requestId">Identifier of the request to stop.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ShutdownProcess">
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ShutdownProcessAsync">
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ShutdownProcessAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shuts down the Qlik engine.</para>
          <para>This operation is possible only in Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReloadExtensionList">
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReloadExtensionListAsync">
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReloadExtensionListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Reloads the list of extensions.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReplaceAppFromID(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReplaceAppFromIDAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReplaceAppFromIDAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ReplaceAppFromIDAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Replaces an app with the objects from a source app. </para>
          <para>The list of objects in the app to be replaced must be defined in qIds.</para>
          <para>The data model of the app cannot be updated. </para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the target app.
                            The target app is the app to be replaced.
                            This parameter is mandatory.</param><param name="srcAppID">Identifier (GUID) of the source app.
                            The objects in the source app will replace the objects in the target app.
                            This parameter is mandatory.</param><param name="ids">QRS identifiers (GUID) of the objects in the target app to be replaced. Only QRS-approved GUIDs are applicable.
                            An object that is QRS-approved, is for example an object that has been published (i.e not private anymore).
                            If an object is private, it should not be included in this list.
                            If qIds is empty, the engine automatically creates a list that contains all QRS-approved objects.
                            If the array of identifiers contains objects that are not present in the source app, the objects related to these identifiers are removed from the target app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CopyApp(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CopyAppAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CopyAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CopyAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Copies an app that is in the Qlik Sense repository.</para>
          <para>The engine copies the app into an app entity that was previously created by the repository. See the QRS API (REST API) help for more information.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetAppId">Identifier (GUID) of the app entity in the Qlik Sense repository.
                            The app entity must have been previously created by the repository (via the REST API).
                            This parameter is mandatory.</param><param name="srcAppId">Identifier (GUID) of the source app in the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of QRS identifiers.
                            The list of all the objects in the app to be copied must be given. This list must contain the GUIDs of all these objects.
                            If the list of the QRS identifiers is empty, the CopyApp method copies all objects to the target app.
                            Script-defined variables are automatically copied when copying an app. To be able to copy variables not created via script, the GUID of each variable must be provided in the list of QRS identifiers.
                            To get the QRS identifiers of the objects in an app, you can use the QRS API. The GET method (from the QRS API) returns the identifiers of the objects in the app.
                            The following example returns the QRS&amp;#160;identifiers of all the objects in a specified app:
                            GET /qrs/app/9c3f8634-6191-4a34-a114-a39102058d13
                            Where
                            9c3f8634-6191-4a34-a114-a39102058d13 is the identifier of the app.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ExportApp(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ExportAppAsync(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ExportAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ExportAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Exports an app from the Qlik Sense repository to the file system.</para>
          <para>This operation is possible only in Qlik Sense Enterprise.</para>
        </summary><param name="targetPath">Path and name of the target app.
                            This parameter is mandatory.</param><param name="srcAppId">Identifier of the source app. The identifier is a GUID from the Qlik Sense repository.
                            This parameter is mandatory.</param><param name="ids">Array of identifiers.
                            The list of all the objects in the app to be exported must be given. This list must contain the GUIDs of all these objects.</param><param name="noData" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.PublishApp(System.String,System.String,System.String)">
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.PublishAppAsync(System.String,System.String,System.String)">
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.PublishAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="appId" /><param name="name" /><param name="streamId" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsPersonalMode">
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsPersonalModeAsync">
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsPersonalModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsPersonalModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Indicates whether or not the user is working in personal mode (Qlik Sense Desktop).</para>
          <para>This method is deprecated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetUniqueID">
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetUniqueIDAsync">
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetUniqueIDAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetUniqueIDAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the unique identifier of the endpoint for the current user in the current app.</para>
          <para>This unique identifier can be used for logging purposes.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OpenApp(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OpenAppAsync(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OpenAppAsync(Qlik.Engine.AsyncHandle,System.String,System.String,System.String,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.OpenAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.String,System.String,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Opens an app and checks if the app needs to be migrated (if the app is deprecated).</para>
          <para>The OpenDoc method compares the version of the app with the version of Qlik Sense and migrates the app to the current version of Qlik Sense if necessary. Once the migration is done, the app is opened.</para>
          <para>If no migration is needed, the app is opened immediately.</para>
          <para>The following applies:</para>
          <para>* The app version is lower than 0.95: no migration is done. Apps older than the version 0.95 are not supported. </para>
          <para>* The app version is at least 0.95 and less than the Qlik Sense version: the app is migrated and then opened.</para>
          <para>* Qlik Sense and the app have the same version: the app is opened, no migration is needed. </para>
          <para>If the app is read-only, the app migration cannot occur. An error message is sent.</para>
        </summary><param name="docName">The GUID (in Qlik Sense Enterprise) or Name (in Qlik Sense Desktop) of the app to retrieve.</param><param name="userName">Name of the user that opens the app.
                            This parameter is optional.</param><param name="password">Password of the user.
                            This parameter is optional.</param><param name="serial">Current Qlik Sense serial number.
                            This parameter is optional.</param><param name="noData">Set this parameter to true to be able to open an app without loading its data.
                            When this parameter is set to true, the objects in the app are present but contain no data. The script can be edited and reloaded.
                            This parameter is optional and the default value is false.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionApp">
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppAsync">
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates an empty session app. </para>
          <para>The following applies:</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppFromApp(System.String)">
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppFromAppAsync(System.String)">
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppFromAppAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CreateSessionAppFromAppAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Creates a session app from a source app. </para>
          <para>The following applies:</para>
          <para>* The objects in the source app are copied into the session app but contain no data. </para>
          <para>* The script of the session app can be edited and reloaded.</para>
          <para>* The name of a session app cannot be chosen. The engine automatically assigns a unique identifier to the session app.</para>
          <para>* A session app is not persisted and cannot be saved. Everything created during a session app is non-persisted; for example: objects, data connections.</para>
        </summary><param name="srcAppId">App identifier of the source app.
                            It corresponds to qAppId returned by the CreateApp method when creating the source app.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ProductVersion">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ProductVersionAsync">
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ProductVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ProductVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the Qlik Sense version number.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppEntry(System.String)">
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppEntryAsync(System.String)">
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppEntryAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetAppEntryAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the meta data of an app.</para>
        </summary><param name="appID">Identifier of the app, as returned by the CreateApp method.
                            One of:
                             
                                Path and name of the app (Qlik Sense Desktop)
                                GUID (Qlik Sense Enterprise)
                             
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.EngineVersion">
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.EngineVersionAsync">
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.EngineVersionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.EngineVersionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the version number of the Qlik engine component.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ConfigureReload(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ConfigureReloadAsync(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.ConfigureReloadAsync(Qlik.Engine.AsyncHandle,System.Boolean,System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Configures the engine's behavior during a reload.</para>
          <para>The ConfigureReload method should be run before the DoReload method.</para>
        </summary><param name="cancelOnScriptError">If set to true, the script execution is halted on error.
                            Otherwise, the engine continues the script execution.
                            This parameter is relevant only if the variable ErrorMode is set to 1.</param><param name="useErrorData">If set to true, any script execution error is returned in qErrorData by the GetProgress method.</param><param name="interactOnError">If set to true, the script execution is halted on error and the engine is waiting for an interaction to be performed. If the result from the interaction is 1 (qDef.qResult is 1), the engine continues the script execution otherwise the execution is halted.
                            This parameter is relevant only if the variable ErrorMode is set to 1 and the script is run in debug mode (qDebug is set to true when calling the DoReload method).</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelReload">
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelReloadAsync">
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.CancelReloadAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Cancels an ongoing reload. The reload of the app is stopped. The indexation can be canceled and true is still the return value of the reload task.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBNF(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBNFAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBNFAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBNFAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. The BNF rules define the syntax for the script statements and the script or chart functions. </para>
          <para> In the Qlik engine BNF grammar, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">Returns a set of rules defining the syntax for:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFunctions(Qlik.Engine.FunctionGroup)">
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFunctionsAsync(Qlik.Engine.FunctionGroup)">
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFunctionsAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.FunctionGroup)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFunctionsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.FunctionGroup)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the list of all the script functions.</para>
        </summary><param name="group">Name of the group
                            This parameter is optional.
                            Default is all groups.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOdbcDsns">
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOdbcDsnsAsync">
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOdbcDsnsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOdbcDsnsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of the ODBC connectors that are installed in the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOleDbProviders">
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOleDbProvidersAsync">
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOleDbProvidersAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetOleDbProvidersAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the list of the OLEDB providers installed on the system.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDatabasesFromConnectionString(Qlik.Engine.Connection)">
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDatabasesFromConnectionStringAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDatabasesFromConnectionStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDatabasesFromConnectionStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the databases in a ODBC, OLEDB or CUSTOM data source.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsValidConnectionString(Qlik.Engine.Connection)">
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsValidConnectionStringAsync(Qlik.Engine.Connection)">
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsValidConnectionStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.IsValidConnectionStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.Connection)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Checks if a connection string is valid.</para>
        </summary><param name="connection">Information about the connection.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDefaultAppFolder">
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDefaultAppFolderAsync">
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDefaultAppFolderAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetDefaultAppFolderAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the folder where the apps are stored.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetLogicalDriveStrings">
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetLogicalDriveStringsAsync">
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetLogicalDriveStringsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetLogicalDriveStringsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the logical drives in the system.</para>
          <para>This method applies only if running Qlik Sense Desktop.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFolderItemsForPath(System.String)">
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFolderItemsForPathAsync(System.String)">
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFolderItemsForPathAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetFolderItemsForPathAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the files and folders located at a specified path.</para>
        </summary><param name="path">Absolute or relative path.
                            Relative paths are relative to the default Apps folder.
                            In Qlik Sense Enterprise:
                            The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access.
                            In Qlik Sense Desktop:
                            The apps are located in C:\Users\&amp;lt;user name&amp;gt;\Documents\Qlik\Sense\Apps.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetSupportedCodePages">
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetSupportedCodePagesAsync">
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetSupportedCodePagesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetSupportedCodePagesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the supported code pages.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetCustomConnectors(System.Boolean)">
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetCustomConnectorsAsync(System.Boolean)">
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetCustomConnectorsAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetCustomConnectorsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>List the custom connectors available in the system.</para>
        </summary><param name="reloadList">Sets if the list of custom connectors should be reloaded or not.
                            This parameter is optional and the default value is false.
                            If set to false, only the connectors that were returned the previous time are returned. If new connectors have been added since the last call to the GetCustomConnectors method was made, the new connectors are not returned.
                            If set to true, the GetCustomConnectors method looks for new connectors in the file system.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNF(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language, as well as a string hash calculated from that grammar. The BNF rules define the syntax for the script statements and the script or chart functions. If the hash changes between subsequent calls to this method, this indicates that the BNF has changed.</para>
          <para> In the Qlik engine grammars, a token is a string of one or more characters that is significant as a group. For example, a token could be a function name, a number, a letter, a parenthesis, and so on.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFHash(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFHashAsync(Qlik.Engine.BNFType)">
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFHashAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFHashAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.</para>
        </summary><param name="bnfType">The type of grammar to return:
                             
                                 the script statements and the script functions if qBnfType is set to S.
                                the chart functions if qBnfType is set to E.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFString(Qlik.Engine.BNFType)">
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFStringAsync(Qlik.Engine.BNFType)">
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFStringAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetBaseBNFStringAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},Qlik.Engine.BNFType)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="bnfType" /><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetStreamList">
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetStreamListAsync">
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetStreamListAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IHub.GetStreamListAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the streams.</para>
        </summary><returns />
        </member>
        <member name="T:Qlik.Engine.ILocation">
            <summary>
            Interface for Qlik Sense instance location handling
            </summary>
        </member>
        <member name="P:Qlik.Engine.ILocation.IsVersionCheckActive">
            <summary>
            True if SDK / Engine version checks are active for the location.
            </summary>
        </member>
        <member name="T:Qlik.Engine.ISession">
            <summary>
            Contains Information to attach to a specific qlik engine session
            When connecting to a Qlik Sense app you can work with sessions.
            Sessions specify who should see changes in an app, and are based on combining userId and session key.
            </summary>
            <remarks>Only one app can be open in a session at a time</remarks>
        </member>
        <member name="P:Qlik.Engine.ISession.AppIdentifier">
            <summary>
            App identifier
            </summary>
        </member>
        <member name="T:Qlik.Engine.INxContainerEntry">
            <summary />
        </member>
        <member name="M:Qlik.Engine.INxContainerEntry.AsObject">
            <summary>
            Converts an ContainerEntry into its corresponding GenericObject
            </summary>
            <returns>a Generic Object</returns>
        </member>
        <member name="M:Qlik.Engine.INxContainerEntry.AsObject``1">
            <summary>
            Converts an ContainerEntry into its corresponding GenericObject
            </summary>
            <typeparam name="T">Expected GenericObject subclass type</typeparam>
            <returns>a Generic Object</returns>
        </member>
        <member name="P:Qlik.Engine.INxContainerEntry.Info">
            <summary>Information about the object</summary>
        </member>
        <member name="P:Qlik.Engine.INxContainerEntry.Meta">
            <summary>Information on publishing and permissions</summary>
        </member>
        <member name="P:Qlik.Engine.INxContainerEntry.Data">
            <summary>Set of data</summary>
        </member>
        <member name="T:Qlik.Engine.NxContainerEntry">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxContainerEntry.AsObject">
            <summary>
            Converts an ContainerEntry into its corresponding GenericObject
            </summary>
            <returns>a Generic Object</returns>
        </member>
        <member name="M:Qlik.Engine.NxContainerEntry.AsObject``1">
            <summary>
            Converts an ContainerEntry into its corresponding GenericObject
            </summary>
            <typeparam name="T">Expected GenericObject subclass type</typeparam>
            <returns>a Generic Object</returns>
        </member>
        <member name="P:Qlik.Engine.NxContainerEntry.Info">
            <summary>Information about the object</summary>
        </member>
        <member name="P:Qlik.Engine.NxContainerEntry.Meta">
            <summary>Information on publishing and permissions</summary>
        </member>
        <member name="P:Qlik.Engine.NxContainerEntry.Data">
            <summary>Set of data</summary>
        </member>
        <member name="M:Qlik.Engine.NxContainerEntry.#ctor">
            <summary>Creates an instance of the NxContainerEntry class</summary>
        </member>
        <member name="T:Qlik.Engine.INxInfo">
            <summary />
        </member>
        <member name="M:Qlik.Engine.INxInfo.AsObject">
            <summary>
            Converts an info object into its corresponding GenericObject
            </summary>
            <returns>a Generic Object</returns>
        </member>
        <member name="M:Qlik.Engine.INxInfo.AsObject``1">
            <summary>
            Converts an info object into its corresponding GenericObject
            </summary>
            <typeparam name="T">Expected GenericObject subclass type</typeparam>
            <returns>a Generic Object</returns>
        </member>
        <member name="P:Qlik.Engine.INxInfo.Id">
            <summary>Identifier of the object.
                            If the chosen identifier is already in use, the engine automatically sets another one.
                            This parameter is optional. If an identifier is not set, the engine automatically sets one.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInfo.Type">
            <summary>Type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="T:Qlik.Engine.NxInfo">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxInfo.AsObject">
            <summary>
            Converts an info object into its corresponding GenericObject
            </summary>
            <returns>a Generic Object</returns>
        </member>
        <member name="M:Qlik.Engine.NxInfo.AsObject``1">
            <summary>
            Converts an info object into its corresponding GenericObject
            </summary>
            <typeparam name="T">Expected GenericObject subclass type</typeparam>
            <returns>a Generic Object</returns>
        </member>
        <member name="P:Qlik.Engine.NxInfo.Id">
            <summary>Identifier of the object.
                            If the chosen identifier is already in use, the engine automatically sets another one.
                            This parameter is optional. If an identifier is not set, the engine automatically sets one.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInfo.Type">
            <summary>Type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="M:Qlik.Engine.NxInfo.#ctor">
            <summary>Creates an instance of the NxInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.Pager">
            <summary>
            Used for paging when getting data from the engine.
            </summary>
        </member>
        <member name="P:Qlik.Engine.Pager.Default">
            <summary>
            Default page size is 20 items and page width is 1
            </summary>
        </member>
        <member name="M:Qlik.Engine.Pager.Previous(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Get previous pages
            </summary>
            <param name="nxPages">A collection of NxPage</param>
            <returns>
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="M:Qlik.Engine.Pager.Next(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Get next pages
            </summary>
            <param name="nxPages">A collection of NxPage</param>
            <returns>
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="M:Qlik.Engine.Pager.Last(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage},System.Int32)">
            <summary>
            Get last pages
            </summary>
            <param name="nxPages">A collection of NxPage</param>
            <param name="bottom">The last row index.</param>
            <returns>
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="M:Qlik.Engine.Pager.First(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPage})">
            <summary>
            Get first pages
            </summary>
            <param name="nxPages">A collection of NxPage</param>
            <returns>
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="T:Qlik.Engine.MethodInvocationException">
            <summary>
            The Exception thrown when a method has gone wrong on the server during execution.
            </summary>
        </member>
        <member name="M:Qlik.Engine.MethodInvocationException.#ctor(System.String,Qlik.Sense.JsonRpc.MethodInvocationException.Error)">
            <summary>
            Initializes a new instance of the MethodInvocationException class with a specified error message and a reference to the Qlik Sense error that is the cause of this exception.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
            <param name="error">The Qlik Sense error that is the cause of this exception.</param>
        </member>
        <member name="P:Qlik.Engine.MethodInvocationException.InvocationError">
            <summary>
            Gets the Qlik Sense error that caused the current exception
            </summary>
        </member>
        <member name="T:Qlik.Engine.MethodInvocationException.Error">
            <summary>
            Qlik Sense error
            </summary>
        </member>
        <member name="M:Qlik.Engine.MethodInvocationException.Error.#ctor(Qlik.Engine.NxLocalizedErrorCode,System.String,System.String)">
            <summary>
            Initializes a new instance of the Error class with a specified error code, message and optional parameter.
            </summary>
            <param name="code">The specified error code</param>
            <param name="message">The optional error message</param>
            <param name="parameter">The optional error parameter</param>
        </member>
        <member name="P:Qlik.Engine.MethodInvocationException.Error.Code">
            <summary>
            Error code
            </summary>
        </member>
        <member name="T:Qlik.Engine.PropertyContainer">
            <summary>
            Instances of this class represent objects known to the Qlik Sense Engine that follow the properties/layout pattern.
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.#ctor(System.Int32,System.String)">
            <summary>
            Create a C# representation of a qix object with properties and layout functionality.
            </summary>
            <param name="handle">The qix handle of the object.</param>
            <param name="type">The qix type of the object.</param>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetProperties">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <returns>The properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetPropertiesAsync">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <returns>A task whos result is the properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <returns>A task whos result is the properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Get the properties structure of the Qix entity.
            </summary>
            <typeparam name="T">The type to which the properties should be deserialized.</typeparam>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function to deserialize result to target type.</param>
            <returns>A task whos result is the properties structure deserialized to the type T.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetLayout">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <returns>The layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetLayoutAsync">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <returns>A task whos result is the layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <returns>A task whos result is the layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetLayoutAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <summary>
            Get the layout structure of the Qix entity.
            </summary>
            <typeparam name="T">The type to which the properties should be deserialized.</typeparam>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function to deserialize result to target type.</param>
            <returns>A task whos result is the layout structure deserialized to the type T.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.OnGetAbstractLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Callback method for deserializing layouts as AbstractStructue.
            </summary>
            <param name="response">The response object returned from the Qlik Sense engine.</param>
            <returns>The layout structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.GetPropertiesCallback">
            <summary>
            Classes extending this class will have a method called "OnGetPropertiesAsync" that is a callback
            that deserializes responses to the type of the extending class. It would be preferrable to have that
            method in this class instead, but that was not possible for backwards compatibility reasons. The use
            of GetPropertiesCallback will ensure that we pick up the callback method defined by the layer above
            this class and "hook into" the virtual method stack for the "OnGetPropertiesAsync" defined for
            extending class.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.OnGetAbstractPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Callback method for deserializing properties as AbstractStructue.
            </summary>
            <param name="response">The response object returned from the Qlik Sense engine.</param>
            <returns>The properties structure deserialized as AbstractStructure.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.OnGetLayoutAsync``1(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Generic callback method for deserializing layouts.
            </summary>
            <typeparam name="T">The type to which the layout should be deserialized.</typeparam>
            <param name="response">The response object returned from the Qlik Sense engine.</param>
            <returns>The layout structure deserialized as type T.</returns>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.OnGetPropertiesAsync``1(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Generic callback method for deserializing properties.
            </summary>
            <typeparam name="T">The type to which the properties should be deserialized.</typeparam>
            <param name="response">The response object returned from the Qlik Sense engine.</param>
            <returns>The properties structure deserialized as type T.</returns>
        </member>
        <member name="P:Qlik.Engine.PropertyContainer.Layout">
            <summary>
            The calculated Layout based on Properties * Data * Selectionstate
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SetProperties(Qlik.Engine.AbstractStructure)">
            <summary>
            Set properties for the Qix entity.
            </summary>
            <param name="prop">The new property structure.</param>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SetPropertiesAsync(Qlik.Engine.AbstractStructure)">
            <summary>
            Set properties for the Qix entity.
            </summary>
            <param name="prop">The new property structure.</param>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.AbstractStructure)">
            <summary>
            Set properties for the Qix entity.
            </summary>
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="prop">The new property structure.</param>
        </member>
        <member name="P:Qlik.Engine.PropertyContainer.Properties">
            <summary>
            Property for accessing properties structure. The property maps to the methods GetProperties and SetProperties.
            </summary>
        </member>
        <member name="F:Qlik.Engine.PropertyContainer.LayoutMode">
            <summary>
            True if layout is not suspended.
            </summary>
        </member>
        <member name="P:Qlik.Engine.PropertyContainer.ShouldDelayChange">
            <summary>
            True if layout is suspended.
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SuspendLayout">
            <summary>
            Suspend layout updates. The OnChanged callback will not be executed while layout is suspended.
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.ResumeLayout">
            <summary>
            Resume layout updates. The OnChanged callback will not be executed while layout is suspended.
            </summary>
        </member>
        <member name="P:Qlik.Engine.PropertyContainer.SuspendedLayout">
            <summary>
            Stops incoming changes from altering the object, resumes normal behavior after disposed.
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SuspendedLayoutHandler.#ctor(Qlik.Engine.IPropertyContainer)">
            <summary>
            Suspend layout handler
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.SuspendedLayoutHandler.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="M:Qlik.Engine.PropertyContainer.OnDirty">
            <summary>
            Invokes the Changed Event with full dirty handling if possible
            </summary>
        </member>
        <member name="T:Qlik.Engine.QixClassBase">
            <summary>
            Instances of this class represent objects known to the Qlik Sense Engine.
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.QixClassBase.#ctor(System.Int32,System.String)">
            <summary>
            Create a C# representation of a qix object.
            </summary>
            <param name="handle">The qix handle of the object.</param>
            <param name="type">The qix type of the object.</param>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.#ctor(System.Int32,System.String,Qlik.Engine.Communication.IQlikConnection)">
            <summary>
            Create a C# representation of a qix object.
            </summary>
            <param name="handle">The qix handle of the object.</param>
            <param name="type">The qix type of the object.</param>
            <param name="session">The session in which the qix object resides.</param>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.Handle">
            <summary>
            The handle of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.Type">
            <summary>
            The type of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.Session">
            <summary>
            The session this entity resides in.
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.Id">
            <summary>
            The id of the Qlik Sense entity.
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.ConsideredDirty">
            <summary>
            Forces send of GetProperties and GetLayout calls to engine for this object even when the layout and properties are up to date.
            Resume normal behavior when disposed.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.ConsideredDirtyHandler.#ctor(Qlik.Engine.IQixClassBase)">
            <summary>
            Suspend layout handler
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.ConsideredDirtyHandler.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.ConsiderDirty">
            <summary>
            Forces send of GetProperties and GetLayout calls to engine for this object even when the layout and properties are up to date.
            </summary>
        </member>
        <member name="E:Qlik.Engine.QixClassBase.Closed">
            <summary>
            This event fires when the Qlik Sense entity has been removed or deleted.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.OnClose">
            <summary>
            Invokes the Close Event
            </summary>
        </member>
        <member name="E:Qlik.Engine.QixClassBase.Changed">
            <summary>
            This event fires when a modification has occured to the Qlik Sense entity's selection state, data or properties.
            </summary>
            <remarks>
              This event will only be triggered if the Qlik Sense entity is considered to be up to date when the change occurs.
              When a change event is triggered, no more change events will occur until a computing operation is performed on the entity (for instance GetLayout).
              The initial state of a newly opened entity is not considered to be up to date which implies that an initial computing operation needs to be performed
              on the entity to start the flow of Changed events.
            </remarks>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.OnDirty">
            <summary>
            Invokes the Changed Event with full dirty handling if possible
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixClassBase.ShouldDelayChange">
            <summary>
            Indicates if the entity will handle changes at a later time
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.OnChanged">
            <summary>
            Invokes the Changed event if possible.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.WillChangeLayout">
            <summary>
            Callback before layout changes.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.DidChangeLayout">
            <summary>
            Callback after layout has changed.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.AsValueStructure``1(Qlik.Engine.Communication.IO.Response)">
            <summary>
            Convenience method to create instances from the response result
            </summary>
            <param name="response">the Response object to handle</param>
            <typeparam name="T">the expected result type</typeparam>
            <returns>an instance of T based of the response result content</returns>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.AsValue``1(Qlik.Engine.Communication.IO.Response,System.String)">
            <summary>
            Convenience method to create instances from the response
            </summary>
            <param name="response">the Response object to handle</param>
            <param name="parameterName">the specific result property to handle</param>
            <typeparam name="T">the expected result type</typeparam>
            <returns>an instance of T based of the response result property content</returns>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.Dispose(System.Boolean)">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
            <param name="disposing">true if we are disposing</param>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.ReadJson(Newtonsoft.Json.JsonReader,Qlik.Engine.Communication.QlikConnection)">
            <summary>
            Method for updating an object according to a Qix json object.
            </summary>
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to get json data from.</param>
            <param name="session">The session in which the object resides.</param>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.TokenToQixObject(Newtonsoft.Json.Linq.JToken,System.Type,System.String,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Deserialize a <see cref="T:Newtonsoft.Json.Linq.JToken"/> to an object of a class extending QixClassBase.
            </summary>
            <param name="token">The source token to deserialize.</param>
            <param name="subType">The type to deserialize to.</param>
            <param name="id">The identifier of the qix object.</param>
            <param name="serializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use for deserialization.</param>
            <returns>The deserialized QixClassBase instance.</returns>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.RegisterQixType``1(System.String,System.String)">
            <summary>
            Registration method for qix type.
            </summary>
            <param name="qixType">The identifier of the qix type.</param>
            <param name="subType">The identifier of the subtype.</param>
            <typeparam name="T">The subtype.</typeparam>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.RegisterQixSubType``1(System.String)">
            <summary>
            Registration method for subtype if QixClassBase.
            </summary>
            <param name="visualizationType">The identifier of the subtype.</param>
            <typeparam name="T">The subtype.</typeparam>
        </member>
        <member name="M:Qlik.Engine.QixClassBase.GetRegisteredType(System.String,System.String)">
            <summary>
            Get a registered type.
            </summary>
            <param name="qixType">The qix type from which the type is derived.</param>
            <param name="subType">The subtype of the type.</param>
            <returns>The type </returns>
            <exception cref="T:System.ArgumentException">Throws argument exception if the requested type has not been registered.</exception>
        </member>
        <member name="T:Qlik.Engine.QixNameAttribute">
            <summary>
            Contains the actual server name for a component
            </summary>
        </member>
        <member name="P:Qlik.Engine.QixNameAttribute.Name">
            <summary>
            The name used by Engine API.
            </summary>
        </member>
        <member name="M:Qlik.Engine.QixNameAttribute.#ctor(System.String)">
            <summary>
            Creates a instance with the actual server name for a component
            </summary>
            <param name="name">The server name</param>
        </member>
        <member name="T:Qlik.Engine.Location">
            <summary>
            Handles the location of the Qlik Sense instance
            </summary>
        </member>
        <member name="P:Qlik.Engine.Location.IsVersionCheckActive">
            <summary>
            True if SDK / Engine version checks are active for the location. Default is true.
            </summary>
        </member>
        <member name="M:Qlik.Engine.Location.FromUri(System.Uri)">
            <summary>
            Gets a reference to a Qlik Sense instance at a specific Uri
            </summary>
            <param name="uri">The Uri</param>
            <returns>A reference to the location</returns>
        </member>
        <member name="M:Qlik.Engine.Location.FromUri(System.String)">
            <summary>
            Gets a reference to a remote Qlik Sense instance at a specific Uri
            </summary>
            <param name="uri">The Uri</param>
            <returns>A reference to the location</returns>
        </member>
        <member name="T:Qlik.Engine.Session">
            <summary>
            Contains Information to attach to a specific qlik engine session
            When connecting to a Qlik Sense app you can work with sessions.
            Sessions specify who should see changes in an app, and are based on combining userId and session key.
            </summary>
            <remarks>Only one app can be open in a session at a time</remarks>
        </member>
        <member name="P:Qlik.Engine.Session.Default">
            <summary>
            Default session usable for connecting to the hub
            </summary>
        </member>
        <member name="P:Qlik.Engine.Session.Random">
            <summary>
            Initializes a globally unique session.
            </summary>
            <remarks>Only available when not accessing qlik engine through a proxy</remarks>
        </member>
        <member name="M:Qlik.Engine.Session.WithApp(Qlik.Engine.IAppIdentifier,Qlik.Engine.SessionType)">
            <summary>
            Initializes a app specific session
            <list type="table">
            <listheader><term>SessionType</term><description>Behavior</description></listheader>
            <item><term>SessionType.Default</term><description>Connects to a app session shared with the Qlik Sense web client</description></item>
            <item><term>SessionType.Random</term><description>Connects to a globally unique app session</description></item>
            </list>
            </summary>
            <param name="appIdentifier">application identifier to attach the session to</param>
            <param name="sessionType">the wanted session type</param>
            <returns>a session identifier</returns>
            <example>
            <code>
            // create a session that is private
            ISession privateSession = Session.WithApp(appIdentifier, SessionType.Random);
            </code>
            </example>
        </member>
        <member name="M:Qlik.Engine.Session.WithApp(Qlik.Engine.IAppIdentifier,System.String)">
            <summary>
            Initializes a app specific session with a custom session token
            </summary>
            <param name="appIdentifier">application identifier to attach the session to</param>
            <param name="sessionToken">a custom session token</param>
            <returns>a session identifier</returns>
            <example>
            <code>
            // create a session that synchronizes with the Qlik Sense client
            ISession syncedSession = Session.WithApp(appIdentifier);
             
            // create a session that synchronizes with other clients using the same token
            ISession privateSession = Session.WithApp(appIdentifier, "MySpecificSession");
            </code>
            </example>
        </member>
        <member name="P:Qlik.Engine.Session.AppIdentifier">
            <summary>
            App identifier
            </summary>
        </member>
        <member name="T:Qlik.Engine.SessionType">
            <summary>
            Session type
            </summary>
        </member>
        <member name="F:Qlik.Engine.SessionType.Default">
            <summary>
            Indicates a normal session
            </summary>
        </member>
        <member name="F:Qlik.Engine.SessionType.Random">
            <summary>
            Indicates a globally unique session
            </summary>
        </member>
        <member name="T:Qlik.Engine.StringExpr">
            <summary>
            Expression class that evaluates to a string
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.StringExpr.op_Implicit(System.String)~Qlik.Engine.StringExpr">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The string value to convert</param>
            <returns>The resulting expression object</returns>
        </member>
        <member name="M:Qlik.Engine.StringExpr.op_Implicit(Qlik.Engine.StringExpr)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted string result</returns>
        </member>
        <member name="P:Qlik.Engine.StringExpr.v">
            <summary />
        </member>
        <member name="T:Qlik.Engine.StringExpression">
            <summary>
            Expression class that evaluates to a string
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.StringExpression.op_Implicit(System.String)~Qlik.Engine.StringExpression">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The string value to convert</param>
            <returns>The resulting object</returns>
        </member>
        <member name="M:Qlik.Engine.StringExpression.op_Implicit(Qlik.Engine.StringExpression)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted string result</returns>
        </member>
        <member name="M:Qlik.Engine.StringExpression.ToString">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <returns>
            A string that represents the current object.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="P:Qlik.Engine.StringExpression.Expr">
            <summary />
        </member>
        <member name="M:Qlik.Engine.StringExpression.#ctor">
            <summary>Creates an instance of the StringExpression class</summary>
        </member>
        <member name="T:Qlik.Engine.StringExpressionContainer">
            <summary>
            Wrapper class for a StringExpression object.
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.StringExpressionContainer.op_Implicit(System.String)~Qlik.Engine.StringExpressionContainer">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The string value to convert</param>
            <returns>The resulting object</returns>
        </member>
        <member name="M:Qlik.Engine.StringExpressionContainer.op_Implicit(Qlik.Engine.StringExpressionContainer)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted string result</returns>
        </member>
        <member name="P:Qlik.Engine.StringExpressionContainer.StringExpression">
            <summary>
            The StringExpression object present in the container.
            </summary>
        </member>
        <member name="M:Qlik.Engine.StringExpressionContainer.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:Qlik.Engine.StringExpressionContainer.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="value">Initialization value</param>
        </member>
        <member name="M:Qlik.Engine.StringExpressionContainer.ToString">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <returns>
            A string that represents the current object.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="T:Qlik.Engine.SuspendedLayoutException">
            <summary>
            Exception indicating that a layout has been accessed while suspended.
            </summary>
        </member>
        <member name="P:Qlik.Engine.SuspendedLayoutException.Message">
            <summary>
            Gets a message that describes the current exception.
            </summary>
            <returns>
            The error message that explains the reason for the exception, or an empty string("").
            </returns>
            <filterpriority>1</filterpriority>
        </member>
        <member name="T:Qlik.Engine.UriBindingException">
            <summary>
            Exception thrown when the system was unable to bind an uri to local qlik sense instance automatically
            </summary>
        </member>
        <member name="M:Qlik.Engine.UriBindingException.#ctor(System.String)">
            <summary>
            Creates a new UriBindingException
            </summary>
            <param name="message"></param>
        </member>
        <member name="T:Qlik.Engine.ValueClassAttribute">
            <summary>
            Describes that a class is static data only. When its parent object updates, this object will no longer be valid.
            </summary>
        </member>
        <member name="T:Qlik.Engine.ValueExpr">
            <summary>
            Expression class that evaluates to a value
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.ValueExpr.op_Implicit(System.String)~Qlik.Engine.ValueExpr">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The string value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpr.op_Implicit(Qlik.Engine.ValueExpr)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted string result</returns>
        </member>
        <member name="P:Qlik.Engine.ValueExpr.v">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ValueExpression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.ValueExpression.op_Implicit(System.Double)~Qlik.Engine.ValueExpression">
            <summary>
            Implicit type conversion from <see cref="T:System.Double"/>
            </summary>
            <param name="value">The value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpression.op_Implicit(System.String)~Qlik.Engine.ValueExpression">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpression.op_Implicit(Qlik.Engine.ValueExpression)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpression.op_Implicit(Qlik.Engine.ValueExpression)~System.Double">
            <summary>
            Implicit type conversion to <see cref="T:System.Double"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpression.ToString">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <returns>
            A string that represents the current object.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="P:Qlik.Engine.ValueExpression.Expr">
            <summary />
        </member>
        <member name="M:Qlik.Engine.ValueExpression.#ctor">
            <summary>Creates an instance of the ValueExpression class</summary>
        </member>
        <member name="T:Qlik.Engine.ValueExpressionContainer">
            <summary>
            Wrapper class for a ValueExpression object.
            </summary>
            <summary />
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.op_Implicit(System.String)~Qlik.Engine.ValueExpressionContainer">
            <summary>
            Implicit type conversion from <see cref="T:System.String"/>
            </summary>
            <param name="value">The value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.op_Implicit(System.Double)~Qlik.Engine.ValueExpressionContainer">
            <summary>
            Implicit type conversion from <see cref="T:System.Double"/>
            </summary>
            <param name="value">The value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.op_Implicit(System.Int32)~Qlik.Engine.ValueExpressionContainer">
            <summary>
            Implicit type conversion from <see cref="T:System.Int32"/>
            </summary>
            <param name="value">The value to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.op_Implicit(Qlik.Engine.ValueExpressionContainer)~System.String">
            <summary>
            Implicit type conversion to <see cref="T:System.String"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.op_Implicit(Qlik.Engine.ValueExpressionContainer)~System.Double">
            <summary>
            Implicit type conversion to <see cref="T:System.Double"/>
            </summary>
            <param name="value">The object to convert</param>
            <returns>The converted result</returns>
        </member>
        <member name="P:Qlik.Engine.ValueExpressionContainer.ValueExpression">
            <summary>
            The ValueExpression object present in the container.
            </summary>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="str">Initialization value</param>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.#ctor(System.Double)">
            <summary>
            Constructor
            </summary>
            <param name="d">Initialization value</param>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.#ctor(System.Int32)">
            <summary>
            Constructor
            </summary>
            <param name="n">Initialization value</param>
        </member>
        <member name="M:Qlik.Engine.ValueExpressionContainer.ToString">
            <summary>
            Returns a string that represents the current object.
            </summary>
            <returns>
            A string that represents the current object.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="T:Qlik.Engine.CharEncodingType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.CharEncodingType.CHAR_ENCODING_UTF8">
            <summary />
        </member>
        <member name="F:Qlik.Engine.CharEncodingType.CHAR_ENCODING_UTF16">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDataReductionMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDataReductionMode.DATA_REDUCTION_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDataReductionMode.DATA_REDUCTION_ONEDIM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDataReductionMode.DATA_REDUCTION_SCATTERED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDataReductionMode.DATA_REDUCTION_CLUSTERED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDataReductionMode.DATA_REDUCTION_STACKED">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDimCellType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_VALUE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_EMPTY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_NORMAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_TOTAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_OTHER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_AGGR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_PSEUDO">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_ROOT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_NULL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimCellType.NX_DIM_CELL_GENERATED">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDimensionType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimensionType.NX_DIMENSION_TYPE_DISCRETE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimensionType.NX_DIMENSION_TYPE_NUMERIC">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxDimensionType.NX_DIMENSION_TYPE_TIME">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxExportFileType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxExportFileType.EXPORT_CSV_C">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxExportFileType.EXPORT_CSV_T">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxExportFileType.EXPORT_OOXML">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxExportState">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxExportState.EXPORT_POSSIBLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxExportState.EXPORT_ALL">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxFieldSelectionMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFieldSelectionMode.SELECTION_MODE_NORMAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFieldSelectionMode.SELECTION_MODE_AND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFieldSelectionMode.SELECTION_MODE_NOT">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxFrequencyMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFrequencyMode.NX_FREQUENCY_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFrequencyMode.NX_FREQUENCY_VALUE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFrequencyMode.NX_FREQUENCY_PERCENT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxFrequencyMode.NX_FREQUENCY_RELATIVE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxGrpType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxGrpType.GRP_NX_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxGrpType.GRP_NX_HIEARCHY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxGrpType.GRP_NX_COLLECTION">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxHypercubeMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxHypercubeMode.DATA_MODE_STRAIGHT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxHypercubeMode.DATA_MODE_PIVOT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxHypercubeMode.DATA_MODE_PIVOT_STACK">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxHypercubeMode.DATA_MODE_TREE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxLocalizedErrorCode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_INTERNAL_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_OK">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_NOT_SET">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_ALREADY_EXISTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_INVALID_PATH">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_ACCESS_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_OUT_OF_MEMORY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_NOT_INITIALIZED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_INVALID_PARAMETERS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_EMPTY_PARAMETERS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_INTERNAL_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_CORRUPT_DATA">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_MEMORY_INCONSISTENCY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_INVISIBLE_OWNER_ABORT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_PROHIBIT_VALIDATE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_ABORTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_CONNECTION_LOST">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_UNSUPPORTED_IN_PRODUCT_VERSION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_REST_CONNECTION_FAILURE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_GENERIC_MEMORY_LIMIT_REACHED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_400">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_401">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_402">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_403">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_404">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_405">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_406">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_407">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_408">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_409">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_410">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_411">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_412">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_413">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_414">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_415">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_416">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_417">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_422">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_429">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_500">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_501">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_502">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_503">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_504">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_505">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_509">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HTTP_COULD_NOT_RESOLVE_HOST">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_ALREADY_EXISTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_INVALID_NAME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_ALREADY_OPEN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_IMPORT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_SAVE_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_CREATE_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_CONNECT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_ALREADY_OPEN_IN_DIFFERENT_MODE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_MIGRATION_COULD_NOT_CONTACT_MIGRATION_SERVICE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_MIGRATION_COULD_NOT_START_MIGRATION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_MIGRATION_FAILURE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_SCRIPT_MISSING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_APP_EXPORT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTION_ALREADY_EXISTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTION_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTION_FAILED_TO_LOAD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTION_FAILED_TO_IMPORT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTION_NAME_IS_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTOR_NO_FILE_STREAMING_SUPPORT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CONNECTOR_FILESIZE_EXCEEDED_BUFFER_SIZE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_ACCESS_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_NAME_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_CORRUPT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_FORMAT_UNSUPPORTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_OPENED_IN_UNSUPPORTED_MODE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FILE_TABLE_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_USER_ACCESS_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_USER_IMPERSONATION_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OUT_OF_SESSION_AND_USER_CALS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OUT_OF_SESSION_CALS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OUT_OF_USAGE_CALS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OUT_OF_CALS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OUT_OF_NAMED_CALS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_OFF_DUTY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_BUSY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_LICENSE_EXPIRED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SERVER_AJAX_DISABLED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HC_INVALID_OBJECT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HC_RESULT_TOO_LARGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HC_INVALID_OBJECT_STATE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_HC_MODAL_OBJECT_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_INVALID_DEF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_NOT_IN_LIB">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_HEAP_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_TOO_LARGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_TIMEOUT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_EVAL_CONDITION_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_MIXED_LINKED_AGGREGATION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_MISSING_LINKED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_INVALID_COL_SORT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_PAGES_TOO_LARGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_SEMANTIC_FIELD_NOT_ALLOWED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_VALIDATION_STATE_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_PIVOT_DIMENSIONS_ALREADY_EXISTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_MISSING_LINKED_FIELD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CALC_NOT_CALCULATED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LAYOUT_EXTENDS_INVALID_ID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LAYOUT_LINKED_OBJECT_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LAYOUT_LINKED_OBJECT_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_WRITE_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_READ_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_DELETE_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_UNSUPPORTED_VERSION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_MIGRATION_FAILED_READ_ONLY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_MIGRATION_CANCELLED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_MIGRATION_BACKUP_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_DISK_FULL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_NOT_SUPPORTED_FOR_SESSION_APP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_SYNC_SET_CHUNK_INVALID_PARAMETERS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSISTENCE_SYNC_GET_CHUNK_INVALID_PARAMETERS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SCRIPT_DATASOURCE_ACCESS_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_IN_PROGRESS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_TABLE_X_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_UNKNOWN_STATEMENT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_SOMETHING_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_NOTHING_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_1_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_2_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_3_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_4_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_5_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_6_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_7_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_EXPECTED_ONE_OF_8_OR_MORE_TOKENS_FOUND_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_FIELD_X_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MAPPING_TABLE_X_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_LIB_CONNECTION_X_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_NAME_ALREADY_TAKEN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_WRONG_FILE_FORMAT_DIF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_WRONG_FILE_FORMAT_BIFF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_WRONG_FILE_FORMAT_ENCRYPTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_OPEN_FILE_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_AUTO_GENERATE_COUNT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_PE_ILLEGAL_PREFIX_COMB">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MATCHING_CONTROL_STATEMENT_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MATCHING_LIBPATH_X_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MATCHING_LIBPATH_X_INVALID">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MATCHING_LIBPATH_X_OUTSIDE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_NO_QUALIFIED_PATH_FOR_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_MODE_STATEMENT_ONLY_FOR_LIB_PATHS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_INCONSISTENT_USE_OF_SEMANTIC_FIELDS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_NO_OPEN_DATABASE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_AGGREGATION_REQUIRED_BY_GROUP_BY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECT_MUST_USE_LIB_PREFIX_IN_THIS_MODE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_ODBC_CONNECT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_OLEDB_CONNECT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CUSTOM_CONNECT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_ODBC_READ_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_OLEDB_READ_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CUSTOM_READ_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_BINARY_LOAD_PROHIBITED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECTOR_START_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECTOR_NOT_RESPONDING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECTOR_REPLY_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECTOR_CONNECT_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONNECTOR_NOT_FOUND_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_INPUT_FIELD_WITH_DUPLICATE_KEYS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_RELOAD_CONCATENATE_LOAD_NO_PREVIOUS_TABLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSONAL_NEW_VERSION_AVAILABLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSONAL_VERSION_EXPIRED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSONAL_SECTION_ACCESS_DETECTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_PERSONAL_APP_DELETION_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_USER_AUTHENTICATION_FAILURE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXPORT_OUT_OF_MEMORY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXPORT_NO_DATA">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SYNC_INVALID_OFFSET">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SEARCH_TIMEOUT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_LINKED_EXPRESSION_FAIL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_ROWCOUNT_OVERFLOW">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_EMPTY_RESULT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_DB_CONNECTION_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_MEASURE_NOT_ALLOWED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_DETAIL_NOT_ALLOWED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_NOT_SYNTH_CIRCULAR_ALLOWED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_ONLY_ONE_DD_TABLE_ALLOWED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_DIRECT_DISCOVERY_DB_AUTHORIZATION_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SMART_LOAD_TABLE_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SMART_LOAD_TABLE_DUPLICATED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_VARIABLE_NO_NAME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_VARIABLE_DUPLICATE_NAME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_VARIABLE_INCONSISTENCY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MEDIA_LIBRARY_LIST_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MEDIA_LIBRARY_CONTENT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MEDIA_BUNDLING_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MEDIA_UNBUNDLING_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MEDIA_LIBRARY_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_FEATURE_DISABLED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_JSON_RPC_INVALID_REQUEST">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_JSON_RPC_METHOD_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_JSON_RPC_INVALID_PARAMETERS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_JSON_RPC_INTERNAL_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_JSON_RPC_PARSE_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_SOCKET_CONNECT_FAILURE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_SOCKET_OPEN_FAILURE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_NO_RESPONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_LIBRARY_EXCEPTION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_CONNECTION_CLOSED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_CHANNEL_CLOSED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_UNKNOWN_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_MQ_PROTOCOL_INVALID_STATUS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_OK">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_CANCELLED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_INVALID_ARGUMENT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_DEADLINE_EXCEEDED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_ALREADY_EXISTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_PERMISSION_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_RESOURCE_EXHAUSTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_FAILED_PRECONDITION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_ABORTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_OUT_OF_RANGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_UNIMPLEMENTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_INTERNAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_UNAVAILABLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_DATA_LOSS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_EXTENGINE_GRPC_STATUS_UNAUTHENTICATED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_INVALID_OBJ">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_INVALID_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_INVALID_SHEET">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_INVALID_EXPORT_RANGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_MEMORY_MALLOC_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_CREATING_XLSX_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_CREATING_TMPFILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_ZIP_FILE_OPERATION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_ZIP_FILE_ADD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_ZIP_CLOSE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_NULL_PARAMETER_IGNORED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_MAX_STRING_LENGTH_EXCEEDED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_255_STRING_LENGTH_EXCEEDED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_SHARED_STRING_INDEX_NOT_FOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_WORKSHEET_INDEX_OUT_OF_RANGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_LXW_ERROR_WORKSHEET_MAX_NUMBER_URLS_EXCEEDED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_UNSUPPORTED_PROTOCOL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_COULDNT_RESOLVE_PROXY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_COULDNT_CONNECT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_REMOTE_ACCESS_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_FTP_ACCEPT_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_FTP_ACCEPT_TIMEOUT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_FTP_CANT_GET_HOST">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_PARTIAL_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_QUOTE_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_WRITE_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_UPLOAD_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_OUT_OF_MEMORY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_OPERATION_TIMEDOUT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_FTP_COULDNT_USE_REST">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_HTTP_POST_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_CONNECT_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_FILE_COULDNT_READ_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_LDAP_CANNOT_BIND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_LDAP_SEARCH_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_TOO_MANY_REDIRECTS">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_PEER_FAILED_VERIFICATION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_GOT_NOTHING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_ENGINE_NOTFOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_ENGINE_SETFAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_CERTPROBLEM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_CIPHER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_CACERT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_BAD_CONTENT_ENCODING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_LDAP_INVALID_URL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_USE_SSL_FAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSL_ENGINE_INITFAILED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_LOGIN_DENIED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_TFTP_NOTFOUND">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_TFTP_ILLEGAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_CURL_SSH">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedErrorCode.LOCERR_SETEXPRESSION_TOO_LARGE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxLocalizedWarningCode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedWarningCode.LOCWARN_PERSONAL_RELOAD_REQUIRED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedWarningCode.LOCWARN_PERSONAL_VERSION_EXPIRES_SOON">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedWarningCode.LOCWARN_EXPORT_DATA_TRUNCATED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxLocalizedWarningCode.LOCWARN_COULD_NOT_OPEN_ALL_OBJECTS">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxMatchingFieldMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxMatchingFieldMode.MATCHINGFIELDMODE_MATCH_ALL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxMatchingFieldMode.MATCHINGFIELDMODE_MATCH_ONE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxPatchOperationType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxPatchOperationType.Add">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxPatchOperationType.Remove">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxPatchOperationType.Replace">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxSelectionCellType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSelectionCellType.NX_CELL_DATA">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSelectionCellType.NX_CELL_TOP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSelectionCellType.NX_CELL_LEFT">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxSortIndicatorType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSortIndicatorType.NX_SORT_INDICATE_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSortIndicatorType.NX_SORT_INDICATE_ASC">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxSortIndicatorType.NX_SORT_INDICATE_DESC">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxStackElemType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_NORMAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_TOTAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_OTHER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_SUM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_VALUE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxStackElemType.NX_STACK_CELL_PSEUDO">
            <summary />
        </member>
        <member name="T:Qlik.Engine.AppEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppEntry.ID">
            <summary>Identifier of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.Title">
            <summary>Title of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.Path">
            <summary>Path of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.LastReloadTime">
            <summary>Last reload time of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.ReadOnly">
            <summary>Is set to true if the app is read-only.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.Meta">
            <summary>Meta data.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="P:Qlik.Engine.AppEntry.FileSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.AppObjectList">
            <summary>Lists the app objects. Is the layout for AppObjectListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.AppObjectList.Items">
            <summary>Information about the list of dimensions</summary>
        </member>
        <member name="M:Qlik.Engine.AppObjectList.#ctor">
            <summary>Creates an instance of the AppObjectList class</summary>
        </member>
        <member name="T:Qlik.Engine.AppObjectListDef">
            <summary>Defines the list of objects in an app.</summary>
        </member>
        <member name="P:Qlik.Engine.AppObjectListDef.Type">
            <summary>Type of the app list.</summary>
        </member>
        <member name="P:Qlik.Engine.AppObjectListDef.Data">
            <summary>Data that you want to include in the app list definition.
                            You need to enter the paths to the information you want to retrieve.</summary>
        </member>
        <member name="M:Qlik.Engine.AppObjectListDef.#ctor">
            <summary>Creates an instance of the AppObjectListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.AppScript">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppScript.Script">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppScript.Meta">
            <summary />
        </member>
        <member name="M:Qlik.Engine.AppScript.#ctor">
            <summary>Creates an instance of the AppScript class</summary>
        </member>
        <member name="T:Qlik.Engine.AppScriptObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppScriptObject.Script">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppScriptObject.BreakpointList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AppScriptObject.FavoriteVariables">
            <summary />
        </member>
        <member name="M:Qlik.Engine.AppScriptObject.#ctor">
            <summary>Creates an instance of the AppScriptObject class</summary>
        </member>
        <member name="T:Qlik.Engine.AssociationScore">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AssociationScore.FieldPairName">
            <summary>Pair of fields.
                            &lt;FieldName1&gt; / &lt;FieldName2&gt;
                            Where:
                            &lt;FieldName1&gt; is a field in the table 1 (defined in qTable1)
                             &lt;FieldName2&gt; is a field in the table 2 (defined in qTable2)
                            If the field is a synthetic key, the name of the field is preceded by [Synthetic key]:.</summary>
        </member>
        <member name="P:Qlik.Engine.AssociationScore.ScoreSummary">
            <summary>Flag used to interpret calculated scores.
                            One of the following values or sum of values that apply:
                             
                                0: The cardinal ratio cannot be zero but the symbol score and the row score can be zero.
                                -1: The fields do not have the same type.
                                -2: The number of rows of the field FieldName1 is zero.
                                -4: The number of distinct values of the field FieldName1 is zero.
                                -8: The number of rows of the field FieldName2 is zero.
                                -16: The number of distinct values of the field FieldName2 is zero.
                             
                            Example:
                            The number of rows of the field FieldName1 is zero, and the number of distinct values of the field FieldName2 is zero, then qScoreSummary is -18.</summary>
        </member>
        <member name="P:Qlik.Engine.AssociationScore.Field1Scores">
            <summary>Association information about the field FieldName1 defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.AssociationScore.Field2Scores">
            <summary>Association information about the field FieldName2 defined in qFieldPairName.</summary>
        </member>
        <member name="T:Qlik.Engine.BookmarkFieldPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldPage.StartIndex">
            <summary />
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldPage.EndIndex">
            <summary />
        </member>
        <member name="T:Qlik.Engine.BookmarkList">
            <summary>Lists the bookmarks. Is the layout for BookmarkListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkList.Items">
            <summary>Information about the list of bookmarks</summary>
        </member>
        <member name="M:Qlik.Engine.BookmarkList.#ctor">
            <summary>Creates an instance of the BookmarkList class</summary>
        </member>
        <member name="T:Qlik.Engine.BookmarkListDef">
            <summary>Defines the list of bookmarks.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="M:Qlik.Engine.BookmarkListDef.#ctor">
            <summary>Creates an instance of the BookmarkListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.ChildList">
            <summary>Lists the children of a generic object. Is the layout for ChildListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.ChildList.Items">
            <summary>Information about the items in the app object</summary>
        </member>
        <member name="M:Qlik.Engine.ChildList.#ctor">
            <summary>Creates an instance of the ChildList class</summary>
        </member>
        <member name="T:Qlik.Engine.ChildListDef">
            <summary>Defines the list of children of a generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.ChildListDef.Data">
            <summary>Data that you want to include in the child list definition.
                            You need to enter the paths to the information you want to retrieve.</summary>
        </member>
        <member name="M:Qlik.Engine.ChildListDef.#ctor">
            <summary>Creates an instance of the ChildListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.ContentLibraryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ContentLibraryList.Items">
            <summary>Information about the content library.</summary>
        </member>
        <member name="M:Qlik.Engine.ContentLibraryList.#ctor">
            <summary>Creates an instance of the ContentLibraryList class</summary>
        </member>
        <member name="T:Qlik.Engine.ContentLibraryListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ContentLibraryListItem.Name">
            <summary>Name of the library.</summary>
        </member>
        <member name="P:Qlik.Engine.ContentLibraryListItem.AppSpecific">
            <summary>Is set to true if the library is specific to the app (not a global content library).</summary>
        </member>
        <member name="P:Qlik.Engine.ContentLibraryListItem.Meta">
            <summary>Information about publishing and permissions.</summary>
        </member>
        <member name="M:Qlik.Engine.ContentLibraryListItem.#ctor">
            <summary>Creates an instance of the ContentLibraryListItem class</summary>
        </member>
        <member name="T:Qlik.Engine.DimensionList">
            <summary>Lists the dimensions. Is the layout for DimensionListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.DimensionList.Items">
            <summary>Information about the list of dimensions</summary>
        </member>
        <member name="M:Qlik.Engine.DimensionList.#ctor">
            <summary>Creates an instance of the DimensionList class</summary>
        </member>
        <member name="T:Qlik.Engine.DimensionListDef">
            <summary>Defines the lists of dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.DimensionListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.DimensionListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="M:Qlik.Engine.DimensionListDef.#ctor">
            <summary>Creates an instance of the DimensionListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.DoReloadExParams">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DoReloadExParams.Mode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DoReloadExParams.Partial">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DoReloadExParams.Debug">
            <summary />
        </member>
        <member name="T:Qlik.Engine.DoReloadExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DoReloadExResult.Success">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DoReloadExResult.ScriptLogFile">
            <summary />
        </member>
        <member name="T:Qlik.Engine.Else">
            <summary />
        </member>
        <member name="T:Qlik.Engine.EmbeddedSnapshot">
            <summary />
        </member>
        <member name="T:Qlik.Engine.EmbeddedSnapshotDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ExtensionList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ExtensionList.Items">
            <summary />
        </member>
        <member name="M:Qlik.Engine.ExtensionList.#ctor">
            <summary>Creates an instance of the ExtensionList class</summary>
        </member>
        <member name="T:Qlik.Engine.ExtensionListDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FieldList">
            <summary>Lists the fields present in the data model viewer. Is the layout for FieldListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldList.Items">
            <summary>Array of items</summary>
        </member>
        <member name="M:Qlik.Engine.FieldList.#ctor">
            <summary>Creates an instance of the FieldList class</summary>
        </member>
        <member name="T:Qlik.Engine.FieldListDef">
            <summary>Defines the fields to show.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowSystem">
            <summary>Shows the system tables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowHidden">
            <summary>Shows the hidden fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowSemantic">
            <summary>Show the semantic fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowSrcTables">
            <summary>Shows the tables and fields present in the data model viewer if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowDefinitionOnly">
            <summary>Shows the fields defined on the fly if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowDerivedFields">
            <summary>Shows the fields and derived fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldListDef.ShowImplicit">
            <summary>Shows the Direct Discovery measure fields if set to true.</summary>
        </member>
        <member name="M:Qlik.Engine.FieldListDef.#ctor">
            <summary>Creates an instance of the FieldListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.FieldScores">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldScores.FieldName">
            <summary>Field name.
                            One of the field names defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldScores.ReadableName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldScores.CardinalRatio">
            <summary>Cardinality of a column/field divided by the number of rows in the table.
                             If the cardinal ratio is 1, it means that the column is a candidate/primary key.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldScores.SymbolScore">
            <summary>Number of distinct matches between the two fields defined in qFieldPairName divided by the number of distinct values in the field qFieldName.
                            If 0, it means that there are no common values between the two fields defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldScores.RowScore">
            <summary>Number of matches between the two fields defined in qFieldPairName divided by the number of values in the field qFieldName.
                            If 0, it means that there are no common values between the two fields defined in qFieldPairName.</summary>
        </member>
        <member name="T:Qlik.Engine.GenericAppObjectEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericAppObjectEntry.MetaData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericAppObjectEntry.Root">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericAppObjectMetaData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericAppObjectMetaData.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericAppObjectMetaData.Id">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericAppObjectMetaData.#ctor">
            <summary>Creates an instance of the GenericAppObjectMetaData class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericBookmarkEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkEntry.Properties">
            <summary>Information about the properties of the bookmark.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkEntry.Bookmark">
            <summary>Information about the bookmark.</summary>
        </member>
        <member name="T:Qlik.Engine.GenericBookmarkLayout">
            <summary>Is the layout for GenericBookmarkProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkLayout.Info">
            <summary>Information about the object</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkLayout.Meta">
            <summary>Information on publishing and permissions</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkLayout.Bookmark">
            <summary>Information about the bookmark</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkLayout.FieldInfos">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericBookmarkLayout.#ctor">
            <summary>Creates an instance of the GenericBookmarkLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericBookmarkProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkProperties.Info">
            <summary>Information about the bookmark.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmarkProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericBookmarkProperties.#ctor">
            <summary>Creates an instance of the GenericBookmarkProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericDerivedDefinitionEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedDefinitionEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedDefinitionEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedDefinitionEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedDefinitionProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedDefinitionProperties.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedDefinitionProperties.DerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedDefinitionProperties.MetaDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedFieldEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedFieldEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedFieldsProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldsProperties.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldsProperties.DerivedDefinitionId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldsProperties.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDerivedFieldsProperties.MetaDef">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFieldsProperties.#ctor">
            <summary>Creates an instance of the GenericDerivedFieldsProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDimensionInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionInfo.Cardinal">
            <summary>Number of distinct field values</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionInfo.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionInfo.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionInfo.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericDimensionInfo.#ctor">
            <summary>Creates an instance of the GenericDimensionInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericDimensionLayout">
            <summary>Is the layout for GenericDimensionProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionLayout.Info">
            <summary>Identifier and type of the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionLayout.Meta">
            <summary>Information about publishing and permissions.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionLayout.Dim">
            <summary>Name and label of the dimension, information about grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionLayout.DimInfos">
            <summary>Cardinal and tags related to the dimension.
                            Length of the longest value in the field.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericDimensionLayout.#ctor">
            <summary>Creates an instance of the GenericDimensionLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericDimensionProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDimensionProperties.Info">
            <summary>Identifier and type of the dimension.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionProperties.Dim">
            <summary>Definition of the dimension.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimensionProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericDimensionProperties.#ctor">
            <summary>Creates an instance of the GenericDimensionProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericMeasureLayout">
            <summary>Is the layout for GenericMeasureProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasureLayout.Info">
            <summary>Information about the object.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasureLayout.Measure">
            <summary>Information about the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasureLayout.Meta">
            <summary>Information on publishing and permissions.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericMeasureLayout.#ctor">
            <summary>Creates an instance of the GenericMeasureLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericMeasureProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericMeasureProperties.Info">
            <summary>Information about the measure.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasureProperties.Measure">
            <summary>Definition of the measure.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasureProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericMeasureProperties.#ctor">
            <summary>Creates an instance of the GenericMeasureProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericObjectEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericObjectEntry.Property">
            <summary>Information about the generic object properties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectEntry.Children">
            <summary>Information about the children of the generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectEntry.EmbeddedSnapshotRef">
            <summary>Reference to a bookmark/snapshot that is embedded in the generic object.</summary>
        </member>
        <member name="T:Qlik.Engine.GenericObjectLayout">
            <summary>Is the layout for GenericObjectProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.Info">
            <summary>Identifier and type of the generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.ExtendsId">
            <summary>Should be set to create an object that is linked to another object. Enter the identifier of the object you want to link to.
                            If you do not want to link your object, set this parameter to an empty string.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.HasSoftPatches">
            <summary>Is set to true if the generic object contains some properties that are not persistent (a soft patch was applied).</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.SelectionInfo">
            <summary>Information about the selections.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericObjectLayout.StateName">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericObjectLayout.#ctor">
            <summary>Creates an instance of the GenericObjectLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericUserState">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericUserState.Bookmark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericUserState.Id">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericVariableEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableEntry.Value">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableEntry.IsScriptCreated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericVariableEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableEntryList.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericVariableLayout">
            <summary>Is the layout for GenericVariableProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableLayout.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableLayout.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableLayout.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableLayout.Num">
            <summary>A value.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableLayout.IsScriptCreated">
            <summary>If set to true, it means that the variable was defined via script.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericVariableLayout.#ctor">
            <summary>Creates an instance of the GenericVariableLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.GenericVariableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.MetaDef">
            <summary>Meta data.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.Name">
            <summary>Name of the variable.
                            The name must be unique.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.Comment">
            <summary>Comment related to the variable.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.NumberPresentation">
            <summary>Defines the format of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.IncludeInBookmark">
            <summary>Set this property to true to update the variable when applying a bookmark. The variable value will be persisted in the bookmark.
                            The value of a variable can affect the state of the selections.
                            Script variables cannot be persisted in the bookmark.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariableProperties.Definition">
            <summary>Definition of the variable.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericVariableProperties.#ctor">
            <summary>Creates an instance of the GenericVariableProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.HyperCube">
            <summary>Renders the properties of a hypercube. Is the layout for HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.Size">
            <summary>Defines the size of the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.Error">
            <summary>This parameter is optional and is displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.DimensionInfo">
            <summary>Information on the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.MeasureInfo">
            <summary>Information on the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.EffectiveInterColumnSortOrder">
            <summary>Sort order of the columns in the hypercube.
                            Column numbers are separated by a comma.
                            Example: [1,0,2] means that the first column to be sorted was the column 1, followed by the column 0 and the column 2.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.GrandTotalRow">
            <summary>Aggregate for measures of all values in the field.
                            The result value depends on the qAggrFunc defined in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.DataPages">
            <summary>Set of data.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.PivotDataPages">
            <summary>Set of data for pivot tables.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.StackedDataPages">
            <summary>Set of data for stacked tables.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.Mode">
            <summary>Information about the mode of the visualization.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.NoOfLeftDims">
            <summary>Number of left dimensions
                            Default value is -1.
                            The index related to each left dimension depends on the position of the pseudo dimension (if any).
                            For example, a pivot table with:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                one pseudo dimension in position 1
                                3 left dimensions.
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the pseudo dimension
                                The index 2 corresponds to the left dimension City
                                Product and Category are top dimensions.
                             
                            Another example:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                one pseudo dimension in position -1
                                3 left dimensions.
                             
                            implies that:
                             
                                The index -1 corresponds to the pseudo dimension; the pseudo dimension is the most to the right
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the left dimension City
                                The index 2 corresponds to the left dimension Product
                                Category is a top dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.IndentMode">
            <summary>Is used for pivot tables only.
                            If set to true, the formatting of the results is slightly different.
                            This property is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.LastExpandedPos">
            <summary>Is used for pivot tables only.
                            Position of the last expended cell.
                            This property is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.HasOtherValues">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCube.TreeNodesOnDim">
            <summary>The total number of nodes on each dimension (only applicable when qMode = T).</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCube.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCube.ColumnOrder">
            <summary />
        </member>
        <member name="M:Qlik.Engine.HyperCube.#ctor">
            <summary>Creates an instance of the HyperCube class</summary>
        </member>
        <member name="T:Qlik.Engine.HyperCubeDef">
            <summary>Defines the properties of a hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.Dimensions">
            <summary>Array of dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.Measures">
            <summary>Array of measures.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.InterColumnSortOrder">
            <summary>Defines the sort order of the columns in the hypercube.
                            Column numbers are separated by a comma.
                            Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2.
                            The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array.
                            The index of the pseudo-dimension (if any) is -1.
                            Pseudo dimensions only apply for pivot tables with more than one measure.
                            A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it.
                             Stacked pivot tables can only contain one measure.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.SuppressZero">
            <summary>Removes zero values.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.SuppressMissing">
            <summary>Removes missing values.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.InitialDataFetch">
            <summary>Initial data set.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.ReductionMode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.Mode">
            <summary>Defines the way the data are handled internally by the engine.
                            Default value is DATA_MODE_STRAIGHT.
                            A pivot table can contain several dimensions and measures whereas a stacked pivot table can contain several dimensions but only one measure.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.PseudoDimPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.NoOfLeftDims">
            <summary>Number of left dimensions.
                            Default value is -1. In that case, all dimensions are left dimensions.
                            The index related to each left dimension depends on the position of the pseudo dimension (if any).
                            For example, a pivot table with:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                 
                                    one pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder)
                                    qInterColumnSortOrder is (0,-1,1,2,3)
                                 
                                3 left dimensions (qNoOfLeftDims is set to 3).
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the pseudo dimension
                                The index 2 corresponds to the left dimension City
                                Product and Category are top dimensions.
                             
                            Another example:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                3 left dimensions (qNoOfLeftDims is set to 3).
                                one pseudo dimension
                                the property qInterColumnSortOrder is left empty.
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the left dimension City
                                The index 2 corresponds to the left dimension Product
                                Category is a top dimension.
                                The pseudo dimension is a top dimension</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.AlwaysFullyExpanded">
            <summary>If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.MaxStackedCells">
            <summary>Maximum number of cells for an initial data fetch (set in qInitialDataFetch) when in stacked mode (qMode is K).
                            The default value is 5000.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.PopulateMissing">
            <summary>If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.ShowTotalsAbove">
            <summary>If set to true, the total (if any) is shown on the first row.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.IndentMode">
            <summary>This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the hypercube to be (re)calculated.
                            As long as the condition is not met, the engine does not perform a new calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.SortbyYValue">
            <summary>To enable the sorting by ascending or descending order in the values of a measure.
                            This property applies to pivot tables and stacked pivot tables.
                            In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.</summary>
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.HyperCubeDef.ColumnOrder">
            <summary />
        </member>
        <member name="M:Qlik.Engine.HyperCubeDef.#ctor">
            <summary>Creates an instance of the HyperCubeDef class</summary>
        </member>
        <member name="T:Qlik.Engine.If">
            <summary />
        </member>
        <member name="P:Qlik.Engine.If.Expr">
            <summary />
        </member>
        <member name="M:Qlik.Engine.If.#ctor">
            <summary>Creates an instance of the If class</summary>
        </member>
        <member name="T:Qlik.Engine.JsonArray">
            <summary />
        </member>
        <member name="T:Qlik.Engine.JsonObject">
            <summary />
        </member>
        <member name="T:Qlik.Engine.JsonProperty">
            <summary />
        </member>
        <member name="P:Qlik.Engine.JsonProperty.Value">
            <summary />
        </member>
        <member name="M:Qlik.Engine.JsonProperty.#ctor">
            <summary>Creates an instance of the JsonProperty class</summary>
        </member>
        <member name="T:Qlik.Engine.JSONWebTokenHeader">
            <summary />
        </member>
        <member name="P:Qlik.Engine.JSONWebTokenHeader.typ">
            <summary />
        </member>
        <member name="P:Qlik.Engine.JSONWebTokenHeader.alg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.JSONWebTokenHeader.kid">
            <summary />
        </member>
        <member name="T:Qlik.Engine.LayoutExclude">
            <summary />
        </member>
        <member name="T:Qlik.Engine.LayoutFieldInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LayoutFieldInfo.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LayoutFieldInfo.ValuesCount">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LayoutFieldInfo.ExcludedValuesCount">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ListObject">
            <summary>Renders the properties of a list object. Is the layout for ListObjectDef.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.Size">
            <summary>Defines the size of a list object.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.Error">
            <summary>This parameter is optional and is displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.DimensionInfo">
            <summary>Information about the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.Expressions">
            <summary>Lists the expressions in the list object.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObject.DataPages">
            <summary>Set of data.
                            Is empty if nothing has been defined in qInitialDataFetch in ListObjectDef.</summary>
        </member>
        <member name="M:Qlik.Engine.ListObject.#ctor">
            <summary>Creates an instance of the ListObject class</summary>
        </member>
        <member name="T:Qlik.Engine.ListObjectDef">
            <summary>Defines the properties of a list object.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.LibraryId">
            <summary>Refers to a dimension stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.Def">
            <summary>Refers to a dimension stored in the list object.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.AutoSortByState">
            <summary>Defines the sorting by state.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.FrequencyMode">
            <summary>Defines the frequency mode. The frequency mode is used to calculate the frequency of a value in a list object.
                            This parameter is optional.
                            Default is NX_FREQUENCY_NONE.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.ShowAlternatives">
            <summary>If set to true, alternative values are allowed in qData.
                            This parameter is optional. The default value is false.
                            If set to false, no alternative values are displayed in qData. Values are excluded instead.
                            Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.InitialDataFetch">
            <summary>Fetches an initial data set.</summary>
        </member>
        <member name="P:Qlik.Engine.ListObjectDef.Expressions">
            <summary>Lists the expressions in the list object.
                            This parameter is optional.</summary>
        </member>
        <member name="M:Qlik.Engine.ListObjectDef.#ctor">
            <summary>Creates an instance of the ListObjectDef class</summary>
        </member>
        <member name="T:Qlik.Engine.MeasureList">
            <summary>Lists the measures. Is the layout for MeasureListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.MeasureList.Items">
            <summary>Information about the list of measures</summary>
        </member>
        <member name="M:Qlik.Engine.MeasureList.#ctor">
            <summary>Creates an instance of the MeasureList class</summary>
        </member>
        <member name="T:Qlik.Engine.MeasureListDef">
            <summary>Defines the list of measures.</summary>
        </member>
        <member name="P:Qlik.Engine.MeasureListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.MeasureListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="M:Qlik.Engine.MeasureListDef.#ctor">
            <summary>Creates an instance of the MeasureListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.MediaList">
            <summary>Lists the media files. Is the layout for MediaListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.MediaList.Items">
            <summary>Information about the list of media files.
                            In Qlik Sense Desktop, the media files are retrieved from:
                            %userprofile%\Documents\Qlik\Sense\Content\Default
                             
                            In Qlik Sense Enterprise, the media files are retrieved from:
                            &lt;installation_directory&gt;\Qlik\Sense\Repository\Content\Default
                            The default installation directory is ProgramData.</summary>
        </member>
        <member name="M:Qlik.Engine.MediaList.#ctor">
            <summary>Creates an instance of the MediaList class</summary>
        </member>
        <member name="T:Qlik.Engine.MediaListDef">
            <summary>Defines the list of media files.</summary>
        </member>
        <member name="T:Qlik.Engine.MediaListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.MediaListItem.UrlDef">
            <summary>Relative path to the media file. The URL is static.
                            Media files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="P:Qlik.Engine.MediaListItem.Url">
            <summary>Relative path to the media file.
                            Media files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="M:Qlik.Engine.MediaListItem.#ctor">
            <summary>Creates an instance of the MediaListItem class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAppLayout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.Title">
            <summary>Title of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.FileName">
            <summary>In Qlik Sense Enterprise, this property corresponds to the app identifier (GUID).
                            In Qlik Sense Desktop, this property corresponds to the full path of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.LastReloadTime">
            <summary>Date and time of the last reload of the app in ISO format.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.Modified">
            <summary>Is set to true if the app has been updated since the last save.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.HasScript">
            <summary>Is set to true if a script is defined in the app.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.StateNames">
            <summary>Array of alternate states.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.Meta">
            <summary>Information on publishing and permissions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.LocaleInfo">
            <summary>Information about the locale.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.HasData">
            <summary>Is set to true if the app contains data following a script reload.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.ReadOnly">
            <summary>If set to true, it means that the app is read-only.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.IsOpenedWithoutData">
            <summary>If set to true, it means that the app was opened without loading its data.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppLayout.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="M:Qlik.Engine.NxAppLayout.#ctor">
            <summary>Creates an instance of the NxAppLayout class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAppProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAppProperties.Title">
            <summary>App title.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppProperties.LastReloadTime">
            <summary>Last reload time of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppProperties.MigrationHash">
            <summary>Internal property reserved for app migration.
                             Patch version of the app.
                            Do not update.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppProperties.SavedInProductVersion">
            <summary>Internal property reserved for app migration.
                            The app is saved in this version of the product.
                            Do not update.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAppProperties.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="M:Qlik.Engine.NxAppProperties.#ctor">
            <summary>Creates an instance of the NxAppProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttrDimDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAttrDimDef.Def">
            <summary>Expression or field name.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimDef.LibraryId">
            <summary>LibraryId for dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimDef.SortBy">
            <summary>Sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimDef.Attribute">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxAttrDimDef.#ctor">
            <summary>Creates an instance of the NxAttrDimDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttrDimInfo">
            <summary>Layout for NxAttrDimDef.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.Cardinal">
            <summary>Cardinality of the attribute expression.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.Size">
            <summary>Number of rows.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.FallbackTitle">
            <summary>The title for the attribute dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.Locked">
            <summary>The Locked value of the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.Error">
            <summary>Validation error.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrDimInfo.IsCalculated">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxAttrDimInfo.#ctor">
            <summary>Creates an instance of the NxAttrDimInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttrExprDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAttrExprDef.Expression">
            <summary>Definition of the attribute expression.
                            Example: "Max(OrderID)"</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprDef.LibraryId">
            <summary>Definition of the attribute expression stored in the library..
                            Example: "MyGenericMeasure"</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprDef.Attribute">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxAttrExprDef.#ctor">
            <summary>Creates an instance of the NxAttrExprDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttrExprInfo">
            <summary>Layout for NxAttrExprDef.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprInfo.Min">
            <summary>Minimum value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprInfo.Max">
            <summary>Maximum value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprInfo.FallbackTitle">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.NxAttrExprInfo.MinText">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAttrExprInfo.MaxText">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxAttrExprInfo.#ctor">
            <summary>Creates an instance of the NxAttrExprInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttributeDimValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAttributeDimValues.Values">
            <summary>List of values.</summary>
        </member>
        <member name="T:Qlik.Engine.NxAttributeExpressionValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAttributeExpressionValues.Values">
            <summary>List of attribute expressions values.</summary>
        </member>
        <member name="T:Qlik.Engine.NxAutoSortByStateDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAutoSortByStateDef.DisplayNumberOfRows">
            <summary>This parameter applies to list objects.
                            If the number of selected values in the list object is greater than the value set in qDisplayNumberOfRows, the selected lines are promoted at the top of the list object.
                            If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.</summary>
        </member>
        <member name="T:Qlik.Engine.NxAxisData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAxisData.Axis">
            <summary>List of Axis data.</summary>
        </member>
        <member name="T:Qlik.Engine.NxAxisTicks">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxAxisTicks.Name">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAxisTicks.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="P:Qlik.Engine.NxAxisTicks.Ticks">
            <summary>List of ticks.</summary>
        </member>
        <member name="T:Qlik.Engine.NxBookmark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxBookmark.StateData">
            <summary>List of selections for each state.</summary>
        </member>
        <member name="P:Qlik.Engine.NxBookmark.UtcModifyTime">
            <summary>Time when the bookmark was created.</summary>
        </member>
        <member name="P:Qlik.Engine.NxBookmark.VariableItems">
            <summary>List of the variables in the app at the time the bookmark was created.</summary>
        </member>
        <member name="T:Qlik.Engine.NxCalcCond">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCalcCond.Cond">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCalcCond.Msg">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxCalcCond.#ctor">
            <summary>Creates an instance of the NxCalcCond class</summary>
        </member>
        <member name="T:Qlik.Engine.NxCardinalities">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCardinalities.Cardinal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCardinalities.HypercubeCardinal">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCell.Text">
            <summary>Some text.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.Num">
            <summary>A value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.ElemNumber">
            <summary>Rank number of the value, starting from 0.
                            If the element number is a negative number, it means that the returned value is not an element number.
                            You can get the following negative values:
                             
                                -1: the cell is a Total cell. It shows a total.
                                -2: the cell is collapsed. Applies to pivot tables.
                                -3: the cell belongs to the group Others.
                                -4: the cell is empty. Applies to pivot tables.
                             
                             </summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.State">
            <summary>State of the value.
                            The default state for a measure is L.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.IsEmpty">
            <summary>Is set to true, if qText and qNum are empty.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.IsTotalCell">
            <summary>Is set to true if a total is displayed in the cell.
                            This parameter is optional. The default value is false.
                            Not applicable to list objects.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.IsOtherCell">
            <summary>Is set to true if the cell belongs to the group Others.
                            Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp.
                            This parameter is optional. The default value is false.
                            Not applicable to list objects.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.Frequency">
            <summary>Frequency of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.HighlightRanges">
            <summary>Search hits.
                            The search hits are highlighted.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.AttrDims">
            <summary>Attribute dimensions values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCell.IsNull">
            <summary>Is set to true if the value is Null.</summary>
        </member>
        <member name="M:Qlik.Engine.NxCell.#ctor">
            <summary>Creates an instance of the NxCell class</summary>
        </member>
        <member name="T:Qlik.Engine.NxCellMark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCellMark.DimIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCellMark.ElemNo">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxCellPosition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCellPosition.x">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCellPosition.y">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxConfigurationInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxConfigurationInfo.Features">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxConfigurationInfo.Services">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxConfigurationInfo.SystemProperties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxContinuousDataOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousDataOptions.Start">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousDataOptions.End">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousDataOptions.NbrPoints">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousDataOptions.MaxNbrTicks">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousDataOptions.MaxNumberLines">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxContinuousRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxContinuousRangeSelectInfo.Range">
            <summary>Range information.</summary>
        </member>
        <member name="P:Qlik.Engine.NxContinuousRangeSelectInfo.DimIx">
            <summary>Dimension index.</summary>
        </member>
        <member name="T:Qlik.Engine.NxCurrentSelectionItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.Total">
            <summary>Number of values in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.IsNum">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Is set to true if the field is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.Field">
            <summary>Name of the field that is selected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.Locked">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Is set to true if the field is locked.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.OneAndOnlyOne">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Property that is set to a field. Is set to true if the field cannot be unselected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.TextSearch">
            <summary>Optional parameter.
                            Text that was used for the search. This parameter is filled when searching for a value and selecting it.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.SelectedCount">
            <summary>Number of values that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.Selected">
            <summary>Values that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.RangeInfo">
            <summary>Information about the range of selected values.
                            Is empty if there is no range of selected values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.SortIndex">
            <summary>Sort index of the field. Indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.StateCounts">
            <summary>Number of values in a particular state.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.SelectedFieldSelectionInfo">
            <summary>Information about the fields that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.NotSelectedFieldSelectionInfo">
            <summary>Information about the fields that are not selected.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.SelectionThreshold">
            <summary>Maximum values to show in the current selections.
                            The default value is 6.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.ReadableName">
            <summary>Label that, if defined, is displayed in current selections instead of the actual expression.</summary>
        </member>
        <member name="P:Qlik.Engine.NxCurrentSelectionItem.IsHidden">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDataAreaPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDataAreaPage.Left">
            <summary>Position from the left.
                            Corresponds to the lowest possible value of the first measure (the measure on the x-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataAreaPage.Top">
            <summary>Position from the top.
                            Corresponds to the highest possible value of the second measure (the measure on the y-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataAreaPage.Width">
            <summary>Width of the page.
                            Corresponds to the highest possible value of the first measure (the measure on the x-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataAreaPage.Height">
            <summary>Height of the page.
                            The difference between qTop and qHeight gives the lowest possible value of the second measure (the measure on the y-axis).</summary>
        </member>
        <member name="T:Qlik.Engine.NxDataPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDataPage.Matrix">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataPage.Tails">
            <summary>Array of tails.
                            Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail.
                            If there is no tail, the array is empty [ ].</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDataPage.IsReduced">
            <summary>Is set to true, if the data have been reduced.
                            The default value is false.</summary>
        </member>
        <member name="T:Qlik.Engine.NxDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinition.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinition.Parameters">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinition.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinition.GroupDefs">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDerivedDefinitionData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionData.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionData.NoOfFieldParameters">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionData.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionData.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionData.GroupDefs">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDerivedDefinitionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionInfo.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionInfo.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionInfo.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionInfo.NbrFieldParameters">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDerivedDefinitionParameter">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionParameter.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionParameter.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDerivedDefinitionParameterDesc">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionParameterDesc.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedDefinitionParameterDesc.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDerivedField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedField.Id">
            <summary>Identifier of the derived field.
                            The identifier is unique.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedField.Name">
            <summary>Combination of field name, definition and method.
                            Example:
                            OrderDate.MyDefinition.Year</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedField.Method">
            <summary>Method name associated to the derived field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedField.Expr">
            <summary>Expression of the derived field.
                            Example:
                            If qName is OrderDate.MyDefinition.Year, the expression is as follows:
                            =${Mydefinition(OrderDate).Year}</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedField.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="M:Qlik.Engine.NxDerivedField.#ctor">
            <summary>Creates an instance of the NxDerivedField class</summary>
        </member>
        <member name="T:Qlik.Engine.NxDerivedFieldDescriptionList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedFieldDescriptionList.DerivedFieldLists">
            <summary>Information about the derived fields.</summary>
        </member>
        <member name="T:Qlik.Engine.NxDerivedFieldsData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedFieldsData.DerivedDefinitionName">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedFieldsData.FieldDefs">
            <summary>List of the derived fields.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedFieldsData.GroupDefs">
            <summary>List of the derived groups.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedFieldsData.Tags">
            <summary>List of tags on the derived fields.</summary>
        </member>
        <member name="T:Qlik.Engine.NxDerivedGroup">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDerivedGroup.Id">
            <summary>Identifier of the group.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedGroup.Name">
            <summary>Name of the derived group.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedGroup.Grouping">
            <summary>Grouping type.
                            The grouping should be either H or C (Grouping is mandatory for derived definitions).
                            Is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDerivedGroup.FieldDefs">
            <summary>List of the derived fields in the group.</summary>
        </member>
        <member name="M:Qlik.Engine.NxDerivedGroup.#ctor">
            <summary>Creates an instance of the NxDerivedGroup class</summary>
        </member>
        <member name="T:Qlik.Engine.NxDimension">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimension.LibraryId">
            <summary>Refers to a dimension stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.Def">
            <summary>Refers to a dimension stored in the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.NullSuppression">
            <summary>If set to true, no null values are returned.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.IncludeElemValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimension.OtherTotalSpec">
            <summary>Sets the dimension limits. Each dimension of a hypercube is configured separately.
                            Defines if some values (grouped as Others) should be grouped together in the visualization.
                            For example in a pie chart all values lower than 200 could be grouped together.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.ShowTotal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimension.ShowAll">
            <summary>If set to true, all dimension values are shown.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.OtherLabel">
            <summary>This property is used when some dimension limits are set.
                            Label of the Others group. The default label is Others.
                            Example:"qOtherLabel":"=&lt;label&gt;"
                            or"qOtherLabel":{"qExpr":"=&lt;label&gt;"}
                            Where
                             
                                &lt;label&gt; is the label of the Others group.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.TotalLabel">
            <summary>If this property is set, the total of the calculated values is returned.
                            The default label is Total.
                            Example:
                            "qTotalLabel":"=&lt;label&gt;"
                             
                            or
                            "qTotalLabel":{"qExpr":"=&lt;label&gt;"}
                             
                            Where
                             
                                &lt;label&gt; is the label of the Totalgroup.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the dimension to be calculated.
                            If the calculation condition is not met, the dimension is excluded from the calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.AttributeExpressions">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.AttributeDimensions">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimension.CalcCondition">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxDimension.#ctor">
            <summary>Creates an instance of the NxDimension class</summary>
        </member>
        <member name="T:Qlik.Engine.NxDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.FallbackTitle">
            <summary>Corresponds to the label of the dimension that is selected.
                            If the label is not defined then the field name is used.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Locked">
            <summary>Is set to true if the field is locked.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.SortIndicator">
            <summary>Sort indicator.
                            This parameter is optional.
                            The default value is no sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.GroupFallbackTitles">
            <summary>Array of dimension labels.
                            Contains the labels of all dimensions in a hierarchy group (for example the labels of all dimensions in a drill down group).</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.GroupPos">
            <summary>Index of the dimension that is currently in use.
                            qGroupPos is set to 0 if there are no hierarchical groups (drill-down groups) or cycle groups.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.StateCounts">
            <summary>Number of values in a particular state.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.DimensionType">
            <summary>Binary format of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Grouping">
            <summary>Defines the grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.NumFormat">
            <summary>Format of the field.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.IsAutoFormat">
            <summary>This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's definition.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.GroupFieldDefs">
            <summary>Array of field names.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Min">
            <summary>Minimum value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Max">
            <summary>Maximum value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.ContinuousAxes">
            <summary>Is continuous axis used.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.IsCyclic">
            <summary>Is a cyclic dimension used.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.DerivedField">
            <summary>Is derived field is used as a dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.AttrExprInfo">
            <summary>Array of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.AttrDimInfo">
            <summary>Array of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.IsCalculated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.IsOneAndOnlyOne">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDimensionInfo.Cardinalities">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxDimensionInfo.#ctor">
            <summary>Creates an instance of the NxDimensionInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxDownloadInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDownloadInfo.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDownloadInfo.FileSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxDownloadOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDownloadOptions.BookmarkId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxDownloadOptions.Expires">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxEngineVersion">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineVersion.ComponentVersion">
            <summary>Version number of the Qlik engine component.</summary>
        </member>
        <member name="T:Qlik.Engine.NxExpansionPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpansionPath.Left">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpansionPath.Positions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxExpressionCubeDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpressionCubeDef.If">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpressionCubeDef.Expression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxExpressionCubeDef.#ctor">
            <summary>Creates an instance of the NxExpressionCubeDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxExpressionCubeExpr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpressionCubeExpr.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxExpressionCubeExpr.NumFormat">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxExpressionCubeExpr.#ctor">
            <summary>Creates an instance of the NxExpressionCubeExpr class</summary>
        </member>
        <member name="T:Qlik.Engine.NxFeatureConfiguration">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.IsDesktop">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.AutoSave">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.Publishing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.QuickDataLoad">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.UploadToCloud">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.SSOEnabled">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFeatureConfiguration.ColorByDisable">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxFieldDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDerivedDefinition.Expression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDerivedDefinition.Tags">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxFieldDescription">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsHidden">
            <summary>If set to true, it means that the field is hidden.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsSystem">
            <summary>If set to true, it means that the field is a system field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.Cardinal">
            <summary>Number of distinct field values</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsDefinitionOnly">
            <summary>If set to true, it means that the field is a field on the fly.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.DerivedFieldData">
            <summary>Lists the derived fields if any.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsDetail">
            <summary>Is used for Direct Discovery.
                            If set to true, it means that the type of the field is detail.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.IsImplicit">
            <summary>Is used for Direct Discovery.
                            If set to true, it means that the type of the field is measure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldDescription.ReadableName">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxFieldDescription.#ctor">
            <summary>Creates an instance of the NxFieldDescription class</summary>
        </member>
        <member name="T:Qlik.Engine.NxFieldDescriptor">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDescriptor.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldDescriptor.Expr">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxFieldProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldProperties.OneAndOnlyOne">
            <summary>This parameter is set to true, if the field has one and only one selection (not 0 and not more than 1).
                            If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field.
                            The property OneAndOnlyOne can be set to true if one and only value has been selected in the field prior to setting the property.</summary>
        </member>
        <member name="T:Qlik.Engine.NxFieldSelectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxFieldSelectionInfo.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxFieldSelectionInfo.FieldSelectionMode">
            <summary>Selection mode.</summary>
        </member>
        <member name="T:Qlik.Engine.NxGeoBoundingBox">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoBoundingBox.Top">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoBoundingBox.Left">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoBoundingBox.Bottom">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoBoundingBox.Right">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxGeoCoordinate">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoCoordinate.Lat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGeoCoordinate.Lon">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxGetBookmarkOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGetBookmarkOptions.Types">
            <summary>List of object types.</summary>
        </member>
        <member name="P:Qlik.Engine.NxGetBookmarkOptions.Data">
            <summary>Set of data.</summary>
        </member>
        <member name="T:Qlik.Engine.NxGetObjectOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGetObjectOptions.Types">
            <summary>List of object types.</summary>
        </member>
        <member name="P:Qlik.Engine.NxGetObjectOptions.IncludeSessionObjects">
            <summary>Set to true to include session objects.
                            Default: false</summary>
        </member>
        <member name="P:Qlik.Engine.NxGetObjectOptions.Data">
            <summary>Set of data.</summary>
        </member>
        <member name="T:Qlik.Engine.NxGroupDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGroupDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGroupDerivedDefinition.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGroupDerivedDefinition.FieldDerivedDefinitionNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxGroupTail">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxGroupTail.Up">
            <summary>Number of elements that are part of the previous tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight
                            This parameter is optional. Is not shown if the value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxGroupTail.Down">
            <summary>Number of elements that are part of the next tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight
                            This parameter is optional. Is not shown if the value is 0.</summary>
        </member>
        <member name="T:Qlik.Engine.NxHighlightRanges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxHighlightRanges.Ranges">
            <summary>Ranges of highlighted values</summary>
        </member>
        <member name="T:Qlik.Engine.NxInlineDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.Grouping">
            <summary>Used to define a cyclic group or drill-down group.
                            This parameter is optional.
                            Default value is no grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.FieldDefs">
            <summary>Array of field names.
                            When creating a grouped dimension, more than one field name is defined.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.FieldLabels">
            <summary>Array of field labels.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.SortCriterias">
            <summary>Defines the sorting criteria in the field.
                            This parameter is optional.
                            Default is to sort by alphabetical order, ascending.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.NumberPresentations">
            <summary>Defines the format of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.ActiveField">
            <summary>Index of the active field in a cyclic dimension.
                            This parameter is optional. The default value is 0.
                            This parameter is used in case of cyclic dimensions (qGrouping is C).</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineDimensionDef.LabelExpression">
            <summary>Label expression.
                            This parameter is optional.</summary>
        </member>
        <member name="M:Qlik.Engine.NxInlineDimensionDef.#ctor">
            <summary>Creates an instance of the NxInlineDimensionDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxInlineMeasureDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Label">
            <summary>Name of the measure.
                            This parameter is optional.
                            An empty string is returned as a default value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Description">
            <summary>Description of the measure.
                            This parameter is optional.
                            An empty string is returned as a default value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Tags">
            <summary>Name connected to the measure that is used for search purposes.
                            This parameter is optional.
                            A measure can have several tags.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Grouping">
            <summary>Default value is no grouping.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Def">
            <summary>Definition of the expression in the measure.
                            Example: Sum (OrderTotal)
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.NumFormat">
            <summary>Format of the field.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Relative">
            <summary>If set to true, percentage values are returned instead of absolute numbers.
                            This parameter is optional. Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.BrutalSum">
            <summary>If set to true, the sum of rows total should be used rather than real expression total.
                            This parameter is optional and applies to straight tables.
                            Default is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.AggrFunc">
            <summary>Aggregate function.
                             For more information on the aggregate function syntax, see the section Working with Qlik Sense on the online help portal.
                            The default value is 0 (Sum of rows)
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Accumulate">
            <summary>• 0 means no accumulation
                            • 1 means full accumulation (each y-value accumulates all previous y-values of the expression)
                            • ≥ 2 means accumulate as many steps as the qAccumulate value
                            This parameter is optional.
                            Default is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.ActiveExpression">
            <summary>Index of the active expression in a cyclic measure. The indexing starts from 0.
                            This parameter is optional. The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.Expressions">
            <summary>Array of expressions. This parameter is used in case of cyclic measures (qGrouping is C). List of the expressions in the cyclic group.</summary>
        </member>
        <member name="P:Qlik.Engine.NxInlineMeasureDef.LabelExpression">
            <summary>Label expression.
                            This parameter is optional.</summary>
        </member>
        <member name="M:Qlik.Engine.NxInlineMeasureDef.#ctor">
            <summary>Creates an instance of the NxInlineMeasureDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLayoutErrors">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLayoutErrors.ErrorCode">
            <summary>Error code.</summary>
        </member>
        <member name="M:Qlik.Engine.NxLayoutErrors.#ctor">
            <summary>Creates an instance of the NxLayoutErrors class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLibraryDimension">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimension.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimension.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimension.FieldLabels">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimension.LabelExpression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxLibraryDimension.#ctor">
            <summary>Creates an instance of the NxLibraryDimension class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLibraryDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimensionDef.Grouping">
            <summary>Information about the grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimensionDef.FieldDefs">
            <summary>Array of dimension names.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimensionDef.FieldLabels">
            <summary>Array of dimension labels.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryDimensionDef.LabelExpression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxLibraryDimensionDef.#ctor">
            <summary>Creates an instance of the NxLibraryDimensionDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLibraryMeasure">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.Label">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.Expressions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.ActiveExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasure.LabelExpression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxLibraryMeasure.#ctor">
            <summary>Creates an instance of the NxLibraryMeasure class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLibraryMeasureDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.Label">
            <summary>Label of the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.Def">
            <summary>Definition of the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.Grouping">
            <summary>Used to define a cyclic group or drill-down group.
                            This parameter is optional.
                            Default value is no grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.Expressions">
            <summary>Array of expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.ActiveExpression">
            <summary>Index to the active expression in a measure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLibraryMeasureDef.LabelExpression">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxLibraryMeasureDef.#ctor">
            <summary>Creates an instance of the NxLibraryMeasureDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLinkedObjectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLinkedObjectInfo.RootId">
            <summary>Identifier of the root object.
                            If the linked object is a child, the root identifier is the identifier of the parent.
                            If the linked object is an app object, the root identifier is the same than the identifier of the linked object since the linked object is a root object.</summary>
        </member>
        <member name="P:Qlik.Engine.NxLinkedObjectInfo.Info">
            <summary>Information about the linked object.</summary>
        </member>
        <member name="T:Qlik.Engine.NxListObjectExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxListObjectExpression.Expr">
            <summary>Value of the expression.</summary>
        </member>
        <member name="P:Qlik.Engine.NxListObjectExpression.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="M:Qlik.Engine.NxListObjectExpression.#ctor">
            <summary>Creates an instance of the NxListObjectExpression class</summary>
        </member>
        <member name="T:Qlik.Engine.NxListObjectExpressionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxListObjectExpressionDef.Expr">
            <summary>Value of the expression</summary>
        </member>
        <member name="P:Qlik.Engine.NxListObjectExpressionDef.LibraryId">
            <summary>Refers to an expression stored in the library.</summary>
        </member>
        <member name="M:Qlik.Engine.NxListObjectExpressionDef.#ctor">
            <summary>Creates an instance of the NxListObjectExpressionDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxLocatedExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxLocatedExpression.Info">
            <summary>Identifier and type of the object that contains the expression</summary>
        </member>
        <member name="P:Qlik.Engine.NxLocatedExpression.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.NxLocatedExpression.Location">
            <summary>Location of the expression within the object</summary>
        </member>
        <member name="P:Qlik.Engine.NxLocatedExpression.Expression">
            <summary>Value of the expression</summary>
        </member>
        <member name="P:Qlik.Engine.NxLocatedExpression.ParentPath">
            <summary>This parameter is displayed if the expression is located in a child object. The path of the parent of the child is given.
                            The format of the parent path is:
                            /&lt;type of the parent&gt;:&lt;identifier of the parent&gt;</summary>
        </member>
        <member name="T:Qlik.Engine.NxMatchingFieldInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxMatchingFieldInfo.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.NxMatchingFieldInfo.Tags">
            <summary>List of tags</summary>
        </member>
        <member name="T:Qlik.Engine.NxMeasure">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxMeasure.LibraryId">
            <summary>Refers to a measure stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.Def">
            <summary>Refers to a measure stored in the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.SortBy">
            <summary>Defines the sort criteria.
                            This property is optional. The default value is sort by ascending alphabetic order.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.AttributeExpressions">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.AttributeDimensions">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the measure to be calculated.
                            If the calculation condition is not met, the measure is excluded from the calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasure.CalcCondition">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxMeasure.#ctor">
            <summary>Creates an instance of the NxMeasure class</summary>
        </member>
        <member name="T:Qlik.Engine.NxMeasureInfo">
            <summary>Layout for NxInlineMeasureDef.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.FallbackTitle">
            <summary>Corresponds to the label of the measure.
                            If the label is not defined then the measure name is used.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.SortIndicator">
            <summary>Sort indicator.
                            This parameter is optional. The default value is no sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.NumFormat">
            <summary>Format of the field.
                             
This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.Min">
            <summary>Lowest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.Max">
            <summary>Highest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.IsAutoFormat">
            <summary>This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.AttrExprInfo">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.AttrDimInfo">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeasureInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxMeasureInfo.#ctor">
            <summary>Creates an instance of the NxMeasureInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxMeta">
            <summary>Layout for NxMetaDef.</summary>
        </member>
        <member name="P:Qlik.Engine.NxMeta.Name">
            <summary>Name.
                            This property is optional.</summary>
        </member>
        <member name="M:Qlik.Engine.NxMeta.#ctor">
            <summary>Creates an instance of the NxMeta class</summary>
        </member>
        <member name="T:Qlik.Engine.NxMetaDef">
            <summary>Used to collect meta data.</summary>
        </member>
        <member name="T:Qlik.Engine.NxMultiRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxMultiRangeSelectInfo.Ranges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxMultiRangeSelectInfo.ColumnsToSelect">
            <summary>Number of the columns to select.
                            Numbering starts from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.NxNotification">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxNotification.ObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxNotification.QixType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxNotification.Buf">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxNotification.Meta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxNotification.Actions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPage.Left">
            <summary>Position from the left.
                            Corresponds to the first column.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPage.Top">
            <summary>Position from the top.
                            Corresponds to the first row.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPage.Width">
            <summary>Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="P:Qlik.Engine.NxPage.Height">
            <summary>Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="T:Qlik.Engine.NxPageTreeLevel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPageTreeLevel.Left">
            <summary>The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPageTreeLevel.Depth">
            <summary>Number of dimensions to include in the tree.</summary>
        </member>
        <member name="T:Qlik.Engine.NxPageTreeNode">
            <summary>Defines an area of the tree to be fetched.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPageTreeNode.Area">
            <summary>The area of the tree to be fetched. If no area is defined on a dimension, all existing nodes are included.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPageTreeNode.AllValues">
            <summary>When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.</summary>
        </member>
        <member name="T:Qlik.Engine.NxPatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPatch.Op">
            <summary>Operation to perform.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPatch.Path">
            <summary>Path to the property to add, remove or replace.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPatch.Value">
            <summary>This parameter is not used in a remove operation.
                            Corresponds to the value of the property to add or to the new value of the property to update.
                            Examples:
                            "false", "2", "\"New title\""</summary>
        </member>
        <member name="M:Qlik.Engine.NxPatch.#ctor">
            <summary>Creates an instance of the NxPatch class</summary>
        </member>
        <member name="T:Qlik.Engine.NxPivotDimensionCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.Text">
            <summary>Some text</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.ElemNo">
            <summary>Rank number of the value
                            If set to -1, it means that the value is not an element number.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.Value">
            <summary>Value of the cell
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.CanExpand">
            <summary>If set to true, it means that the cell can be expanded.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.CanCollapse">
            <summary>If set to true, it means that the cell can be collapsed.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.Type">
            <summary>Type of the cell</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.Up">
            <summary>Number of elements that are part of the previous tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.Down">
            <summary>Number of elements that are part of the next tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.SubNodes">
            <summary>Information about sub nodes (or sub cells)
                            The array is empty [ ] when there is no sub nodes.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.AttrExps">
            <summary>Information about attribute expressions.
                            The array is empty [ ] when there is no attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotDimensionCell.AttrDims">
            <summary>Information about attribute dimensions.</summary>
        </member>
        <member name="T:Qlik.Engine.NxPivotPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPivotPage.Left">
            <summary>Information about the left dimension values of a pivot table.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotPage.Top">
            <summary>Information about the top dimension values of a pivot table. If there is no top dimension in the pivot table, information about the measures are given.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotPage.Data">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="T:Qlik.Engine.NxPivotValuePoint">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.Label">
            <summary>Label of the cell.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.Text">
            <summary>Some text related to the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.Num">
            <summary>Value of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.AttrExps">
            <summary>Attribute expressions values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxPivotValuePoint.AttrDims">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxPivotValuePoint.#ctor">
            <summary>Creates an instance of the NxPivotValuePoint class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQvfBundledItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQvfBundledItem.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQvfBundledItem.Blob">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQvfBundledItem.#ctor">
            <summary>Creates an instance of the NxQvfBundledItem class</summary>
        </member>
        <member name="T:Qlik.Engine.NxRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxRange.From">
            <summary>Position in the expression of the first character of the field name.</summary>
        </member>
        <member name="P:Qlik.Engine.NxRange.Count">
            <summary>Number of characters in the field name.</summary>
        </member>
        <member name="T:Qlik.Engine.NxRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxRangeSelectInfo.Range">
            <summary>Range of values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxRangeSelectInfo.MeasureIx">
            <summary>Number of the measure to select.
                            Numbering starts from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.NxSelectionCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxSelectionCell.Type">
            <summary>Type of cells to select</summary>
        </member>
        <member name="P:Qlik.Engine.NxSelectionCell.Col">
            <summary>Column index to select
                            Indexing starts from 0.
                            If the cell's type is:
                             
                                D, the index is based on the data matrix.
                                T, the index is based on the data matrix
                                L, the index is based on the left dimensions indexes</summary>
        </member>
        <member name="P:Qlik.Engine.NxSelectionCell.Row">
            <summary>Row index to select
                            Indexing starts from 0.
                            If the cell's type is:
                             
                                D, the index is based on the data matrix.
                                T, the index is based on the top dimensions indexes
                                L, the index is based on the data matrix</summary>
        </member>
        <member name="T:Qlik.Engine.NxSelectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxSelectionInfo.InSelections">
            <summary>Is set to true if the visualization is in selection mode.
                            For more information about the selection mode, see BeginSelections method.</summary>
        </member>
        <member name="P:Qlik.Engine.NxSelectionInfo.MadeSelections">
            <summary>Is set to true if the visualization is in selection mode and if some selections have been made while in selection mode.
                            For more information about the selection mode, see BeginSelections method.</summary>
        </member>
        <member name="T:Qlik.Engine.NxServiceConfiguration">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxServiceConfiguration.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxServiceConfiguration.Url">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxSimpleDimValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxSimpleDimValue.Text">
            <summary>Text related to the attribute expression value.
                            This property is optional. No text is returned if the attribute expression value is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.NxSimpleDimValue.ElemNo">
            <summary>Element number.</summary>
        </member>
        <member name="T:Qlik.Engine.NxSimpleValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxSimpleValue.Text">
            <summary>Text related to the attribute expression value.
                            This property is optional. No text is returned if the attribute expression value is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.NxSimpleValue.Num">
            <summary>Numeric value of the attribute expression.
                            This property is set to NaN (Not a Number) if the attribute expression value is not a numeric.
                            Numerical values are not returned as text.</summary>
        </member>
        <member name="T:Qlik.Engine.NxStackedPivotCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.ElemNo">
            <summary>Rank number of the value.
                            If set to -1, it means that the value is not an element number.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Value">
            <summary>Value of the cell.
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.CanExpand">
            <summary>If set to true, it means that the cell can be expanded.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.CanCollapse">
            <summary>If set to true, it means that the cell can be collapsed.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.MaxPos">
            <summary>Total of the positive values in the current group of cells.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.MinNeg">
            <summary>Total of the negative values in the current group of cells.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Up">
            <summary>Number of elements that are part of the previous tail.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Down">
            <summary>Number of elements that are part of the next tail.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.Row">
            <summary>Row index in the data matrix.
                            The indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.SubNodes">
            <summary>Information about sub nodes (or sub cells).
                            The array is empty [ ] when there are no sub nodes.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.AttrExps">
            <summary>Attribute expressions values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackedPivotCell.AttrDims">
            <summary>Attribute dimensions values.</summary>
        </member>
        <member name="T:Qlik.Engine.NxStackPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxStackPage.Data">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.NxStackPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="T:Qlik.Engine.NxStateCounts">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Locked">
            <summary>Number of values in locked state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Selected">
            <summary>Number of values in selected state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Option">
            <summary>Number of values in optional state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Deselected">
            <summary>Number of values in deselected state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Alternative">
            <summary>Number of values in alternative state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.Excluded">
            <summary>Number of values in excluded state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.SelectedExcluded">
            <summary>Number of values in selected excluded state</summary>
        </member>
        <member name="P:Qlik.Engine.NxStateCounts.LockedExcluded">
            <summary>Number of values in locked excluded state</summary>
        </member>
        <member name="T:Qlik.Engine.NxSystemProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxSystemProperties.PathSeparator">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxTickCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTickCell.Text">
            <summary>Tick's label.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTickCell.Start">
            <summary>Start value.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTickCell.End">
            <summary>End value.</summary>
        </member>
        <member name="T:Qlik.Engine.NxTreeDataOption">
            <summary>Specifies all the paging filters needed to define the tree to be fetched.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeDataOption.MaxNbrOfNodes">
            <summary>Maximum number of nodes in the tree.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeDataOption.TreeNodes">
            <summary>Defines areas of the tree to be fetched. Areas must be defined left to right.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeDataOption.TreeLevels">
            <summary>Filters out complete dimensions from the fetched tree.</summary>
        </member>
        <member name="T:Qlik.Engine.NxTreeDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.LibraryId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.ValueExprs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.NullSuppression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.OtherTotalSpec">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.ShowAll">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.OtherLabel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.TotalLabel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.AttributeExpressions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionDef.AttributeDimensions">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxTreeDimensionDef.#ctor">
            <summary>Creates an instance of the NxTreeDimensionDef class</summary>
        </member>
        <member name="T:Qlik.Engine.NxTreeDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.FallbackTitle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.ApprMaxGlyphCount">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Cardinal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Locked">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.SortIndicator">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.GroupFallbackTitles">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.GroupPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.StateCounts">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Error">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.DimensionType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.ReverseSort">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.IsSemantic">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.NumFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.IsAutoFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.GroupFieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Min">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Max">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.ContinuousAxes">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.IsCyclic">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.DerivedField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.MeasureInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.AttrExprInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.AttrDimInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.IsCalculated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.IsOneAndOnlyOne">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeDimensionInfo.Cardinalities">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxTreeDimensionInfo.#ctor">
            <summary>Creates an instance of the NxTreeDimensionInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxTreeMultiRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeMultiRangeSelectInfo.Ranges">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxTreeNode">
            <summary>Represents a dimension in the tree.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.ElemNo">
            <summary>Element number</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.NodeNr">
            <summary>A generated number applicable to this page only. Used so that children can easily identify who their parents are.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.ParentNode">
            <summary>The qNodeNr of this node's parent for the current page.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.Row">
            <summary>Row index in the data matrix.
                            The indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.Values">
            <summary>The measures for this node.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.Nodes">
            <summary>The children of this node in the tree structure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeNode.AttrDims">
            <summary>Attribute dimension values.</summary>
        </member>
        <member name="T:Qlik.Engine.NxTreeRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeRangeSelectInfo.Range">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeRangeSelectInfo.MeasureIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxTreeRangeSelectInfo.DimensionIx">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxTreeValue">
            <summary>Represents a measure.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeValue.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeValue.Value">
            <summary>Value of the cell.
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeValue.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.NxTreeValue.AttrDims">
            <summary>Attribute dimension values.</summary>
        </member>
        <member name="T:Qlik.Engine.NxValidationError">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxValidationError.ErrorCode">
            <summary>Error code.
                            This parameter is always displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.NxValidationError.Context">
            <summary>Context related to the error, from the user app domain.
                            It can be the identifier of an object, a field name, a table name.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxValidationError.ExtendedMessage">
            <summary>Internal information from the server.
                            This parameter is optional.</summary>
        </member>
        <member name="M:Qlik.Engine.NxValidationError.#ctor">
            <summary>Creates an instance of the NxValidationError class</summary>
        </member>
        <member name="T:Qlik.Engine.NxVariableListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Description">
            <summary>Description of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Definition">
            <summary>Definition of the variable. It can be a value or an expression.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.IsConfig">
            <summary>If set to true, it means that the variable is a system variable.
                             A system variable provides information about the system and is set by the engine. The content cannot be changed by the user.
                            This parameter is optional.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.IsReserved">
            <summary>If set to true, it means that the variable is reserved.
                            This parameter is optional.
                            The default value is false.
                            Examples:
                            • ScriptError is a reserved variable, set by the engine.
                            • DayNames is a reserved variable, set by the user.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.Data">
            <summary>Data.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableListItem.IsScriptCreated">
            <summary>If set to true, it means that the variable was defined via script.</summary>
        </member>
        <member name="M:Qlik.Engine.NxVariableListItem.#ctor">
            <summary>Creates an instance of the NxVariableListItem class</summary>
        </member>
        <member name="T:Qlik.Engine.NxVariableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxVariableProperties.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableProperties.NumberPresentation">
            <summary>Defines the format of the value of a variable.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableProperties.IncludeInBookmark">
            <summary>Set this property to true to update the variable when applying a bookmark.
                            The value of a variable can affect the state of the selections.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableProperties.UsePredefListedValues">
            <summary>The value of a variable can be an enumeration.
                            Set this property to true to reflect the predefined values in an enumeration.</summary>
        </member>
        <member name="P:Qlik.Engine.NxVariableProperties.PreDefinedList">
            <summary>List of enumerations.
                            This property is used if qUsePredefListedValues is set to true.</summary>
        </member>
        <member name="M:Qlik.Engine.NxVariableProperties.#ctor">
            <summary>Creates an instance of the NxVariableProperties class</summary>
        </member>
        <member name="T:Qlik.Engine.NxViewPort">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxViewPort.Width">
            <summary>Width of the canvas in pixels.</summary>
        </member>
        <member name="P:Qlik.Engine.NxViewPort.Height">
            <summary>Height of the canvas in pixels.</summary>
        </member>
        <member name="P:Qlik.Engine.NxViewPort.ZoomLevel">
            <summary>Zoom level.</summary>
        </member>
        <member name="T:Qlik.Engine.ObjectInterface">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ObjectInterface.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ObjectInterface.Handle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ObjectInterface.GenericType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ObjectInterface.GenericId">
            <summary />
        </member>
        <member name="T:Qlik.Engine.PersistedObjectMeta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.Format">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.ParentId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.SharedStatus">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.DstPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.RelativeDstPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.PersistedObjectMeta.SecurityMetaAsBase64">
            <summary />
        </member>
        <member name="M:Qlik.Engine.PersistedObjectMeta.#ctor">
            <summary>Creates an instance of the PersistedObjectMeta class</summary>
        </member>
        <member name="T:Qlik.Engine.SearchableObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchableObject.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchableObject.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchableObject.SearchableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchableObject.SearchableDimensions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchAttribute">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchAttribute.Key">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchAttribute.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchObjectInternalOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchObjectInternalOptions.ExcludedTypes">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SelectionObject">
            <summary>Indicates which selections are currently applied. It gives the current selections. Is the layout for SelectionObjectDef.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectionObject.BackCount">
            <summary>Number of steps back</summary>
        </member>
        <member name="P:Qlik.Engine.SelectionObject.ForwardCount">
            <summary>Number of steps forward</summary>
        </member>
        <member name="P:Qlik.Engine.SelectionObject.Selections">
            <summary>Lists the fields that are selected</summary>
        </member>
        <member name="P:Qlik.Engine.SelectionObject.StateName">
            <summary />
        </member>
        <member name="M:Qlik.Engine.SelectionObject.#ctor">
            <summary>Creates an instance of the SelectionObject class</summary>
        </member>
        <member name="T:Qlik.Engine.SelectionObjectDef">
            <summary>To display the current selections.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectionObjectDef.StateName">
            <summary />
        </member>
        <member name="M:Qlik.Engine.SelectionObjectDef.#ctor">
            <summary>Creates an instance of the SelectionObjectDef class</summary>
        </member>
        <member name="T:Qlik.Engine.StaticContentList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.StaticContentList.Items">
            <summary>Information about the list of content files.</summary>
        </member>
        <member name="M:Qlik.Engine.StaticContentList.#ctor">
            <summary>Creates an instance of the StaticContentList class</summary>
        </member>
        <member name="T:Qlik.Engine.StaticContentListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.StaticContentListItem.UrlDef">
            <summary>Relative path to the content file. The URL is static.
                            In Qlik Sense Enterprise, content files located:
                            • in the /content/&lt;content library name&gt;/ folder are part of a global content library.
                            • in the /appcontent/ folder are part of the app specific library.
                            The content files are never embedded in the qvf file.
                            In Qlik Sense Desktop, content files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="P:Qlik.Engine.StaticContentListItem.Url">
            <summary>Relative path to the content file. The URL is static.
                            In Qlik Sense Enterprise, content files located:
                            • in the /content/&lt;content library name&gt;/ folder are part of a global content library.
                            • in the /appcontent/ folder are part of the app specific library.
                            The content files are never embedded in the qvf file.
                            In Qlik Sense Desktop, content files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="M:Qlik.Engine.StaticContentListItem.#ctor">
            <summary>Creates an instance of the StaticContentListItem class</summary>
        </member>
        <member name="T:Qlik.Engine.StaticContentUrl">
            <summary />
        </member>
        <member name="P:Qlik.Engine.StaticContentUrl.Url">
            <summary>Relative path of the thumbnail.</summary>
        </member>
        <member name="M:Qlik.Engine.StaticContentUrl.#ctor">
            <summary>Creates an instance of the StaticContentUrl class</summary>
        </member>
        <member name="T:Qlik.Engine.StaticContentUrlDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.StaticContentUrlDef.Url">
            <summary>Relative path of the thumbnail.</summary>
        </member>
        <member name="M:Qlik.Engine.StaticContentUrlDef.#ctor">
            <summary>Creates an instance of the StaticContentUrlDef class</summary>
        </member>
        <member name="T:Qlik.Engine.Then">
            <summary />
        </member>
        <member name="T:Qlik.Engine.TreeData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.StateName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.NodesOnDim">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.Error">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.DimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.EffectiveInterColumnSortOrder">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.HasOtherValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.LastExpandedPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeData.TreeDataPages">
            <summary />
        </member>
        <member name="M:Qlik.Engine.TreeData.#ctor">
            <summary>Creates an instance of the TreeData class</summary>
        </member>
        <member name="T:Qlik.Engine.TreeDataDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.StateName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.Dimensions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.InterColumnSortOrder">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.SuppressZero">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.SuppressMissing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.OpenFullyExpanded">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.PopulateMissing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TreeDataDef.InitialDataFetch">
            <summary />
        </member>
        <member name="M:Qlik.Engine.TreeDataDef.#ctor">
            <summary>Creates an instance of the TreeDataDef class</summary>
        </member>
        <member name="T:Qlik.Engine.UndoExclude">
            <summary />
        </member>
        <member name="T:Qlik.Engine.UndoInfo">
            <summary>Displays information about the number of possible undos and redos. Is the layout for UndoInfoDef.</summary>
        </member>
        <member name="P:Qlik.Engine.UndoInfo.UndoCount">
            <summary>Number of possible undos</summary>
        </member>
        <member name="P:Qlik.Engine.UndoInfo.RedoCount">
            <summary>Number of possible redos</summary>
        </member>
        <member name="M:Qlik.Engine.UndoInfo.#ctor">
            <summary>Creates an instance of the UndoInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.UndoInfoDef">
            <summary>Defines if an object should contain information on the number of possible undo and redo.</summary>
        </member>
        <member name="T:Qlik.Engine.VariableList">
            <summary>Lists the variables in an app. Is the layout for VariableListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.VariableList.Items">
            <summary>List of the variables.</summary>
        </member>
        <member name="M:Qlik.Engine.VariableList.#ctor">
            <summary>Creates an instance of the VariableList class</summary>
        </member>
        <member name="T:Qlik.Engine.VariableListDef">
            <summary>Defines the list of variables in an app.</summary>
        </member>
        <member name="P:Qlik.Engine.VariableListDef.Type">
            <summary>Type of the list.</summary>
        </member>
        <member name="P:Qlik.Engine.VariableListDef.ShowReserved">
            <summary>Shows the reserved variables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.VariableListDef.ShowConfig">
            <summary>Shows the system variables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.VariableListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="P:Qlik.Engine.VariableListDef.ShowSession">
            <summary />
        </member>
        <member name="M:Qlik.Engine.VariableListDef.#ctor">
            <summary>Creates an instance of the VariableListDef class</summary>
        </member>
        <member name="T:Qlik.Engine.ArrayOfNxValuePoint">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxCellRows">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchAttributeArray">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericBookmark">
            <summary>This class describes all the methods that apply at bookmark level.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetFieldValues(System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetFieldValuesAsync(System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetFieldValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetFieldValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.OnGetFieldValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.OnGetLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.SetProperties(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.SetPropertiesAsync(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetInfo">
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetInfoAsync">
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.Apply">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyAsync">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApplyAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.OnApplyAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.Publish">
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.PublishAsync">
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnPublish">
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnPublishAsync">
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericBookmark.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.Bookmark">
            <summary>Reference to property Layout.Bookmark</summary>
        </member>
        <member name="P:Qlik.Engine.GenericBookmark.FieldInfos">
            <summary>Reference to property Layout.FieldInfos</summary>
        </member>
        <member name="T:Qlik.Engine.GenericDerivedDefinition">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDerivedDefinitionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.MatchTagsAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.MatchTagsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetDerivedDefinitionDataAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetDerivedDefinitionDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetExpressionAsync(Qlik.Engine.AsyncHandle,System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.GetExpressionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Collections.Generic.IEnumerable{System.String})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
        </member>
        <member name="M:Qlik.Engine.GenericDerivedDefinition.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.GenericDerivedFields">
            <summary />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.SetProperties(Qlik.Engine.GenericDerivedFieldsProperties)">
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.SetPropertiesAsync(Qlik.Engine.GenericDerivedFieldsProperties)">
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDerivedFieldsProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetProperties">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetPropertiesAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetInfo">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetInfoAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldData">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldDataAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldDataAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetDerivedFieldDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedField(System.String)">
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldAsync(System.String)">
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetDerivedFieldAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetListData">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetListDataAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetListDataAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetListDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetListDataAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFields">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldsAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetDerivedFieldsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedGroups">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedGroupsAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedGroupsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.GetDerivedGroupsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.OnGetDerivedGroupsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDerivedFields.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.GenericDimension">
            <summary>This class describes all the methods that apply at dimension level.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLayout">
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLayoutAsync">
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.OnGetLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.SetProperties(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.SetPropertiesAsync(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetGenericDimension">
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetGenericDimensionAsync">
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetGenericDimensionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.OnGetGenericDimensionAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.OnGetLinkedObjectsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.Publish">
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.PublishAsync">
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnPublish">
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnPublishAsync">
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericDimension.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="P:Qlik.Engine.GenericDimension.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDimension.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericDimension.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimension.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimension.Dim">
            <summary>Reference to property Layout.Dim</summary>
        </member>
        <member name="P:Qlik.Engine.GenericDimension.DimInfos">
            <summary>Reference to property Layout.DimInfos</summary>
        </member>
        <member name="T:Qlik.Engine.GenericMeasure">
            <summary>This class describes all the methods that apply at measure level.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLayout">
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLayoutAsync">
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.OnGetLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.SetProperties(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.SetPropertiesAsync(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetGenericMeasure">
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetGenericMeasureAsync">
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetGenericMeasureAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.OnGetGenericMeasureAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.OnGetLinkedObjectsAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.Publish">
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.PublishAsync">
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnPublish">
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnPublishAsync">
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericMeasure.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="P:Qlik.Engine.GenericMeasure.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericMeasure.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericMeasure.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasure.Measure">
            <summary>Reference to property Layout.Measure</summary>
        </member>
        <member name="P:Qlik.Engine.GenericMeasure.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="T:Qlik.Engine.GenericVariable">
            <summary>This class describes all the methods that apply at generic variable level.</summary>
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.OnGetLayoutAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetProperties(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetPropertiesAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.OnGetPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.OnGetInfoAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetStringValue(System.String)">
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetStringValueAsync(System.String)">
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetStringValueAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetNumValue(System.Double)">
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetNumValueAsync(System.Double)">
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetNumValueAsync(Qlik.Engine.AsyncHandle,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetDualValue(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetDualValueAsync(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.SetDualValueAsync(Qlik.Engine.AsyncHandle,System.String,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.GenericVariable.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Text">
            <summary>Reference to property Layout.Text</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariable.Num">
            <summary>Reference to property Layout.Num</summary>
        </member>
        <member name="P:Qlik.Engine.GenericVariable.IsScriptCreated">
            <summary>Reference to property Layout.IsScriptCreated</summary>
        </member>
        <member name="T:Qlik.Engine.Field">
            <summary>This class describes all the methods that apply at field level.</summary>
        </member>
        <member name="M:Qlik.Engine.Field.GetCardinal">
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetCardinalAsync">
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetCardinalAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetCardinalAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnGetCardinalAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetAndMode">
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetAndModeAsync">
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetAndModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetAndModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnGetAndModeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectValues(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectValuesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectValuesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectValuesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.Select(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAsync(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ToggleSelect(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ToggleSelectAsync(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ToggleSelectAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ToggleSelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnToggleSelectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAllButThis(System.Boolean)">
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAllButThisAsync(System.Boolean)">
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAllButThisAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAllButThisAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnClearAllButThisAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectPossible(System.Boolean)">
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectPossibleAsync(System.Boolean)">
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectPossibleAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectPossibleAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectPossibleAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectExcluded(System.Boolean)">
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectExcludedAsync(System.Boolean)">
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectExcludedAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectExcludedAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectExcludedAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAll(System.Boolean)">
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAllAsync(System.Boolean)">
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAllAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAllAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectAllAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.Lock">
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LockAsync">
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LockAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LockAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnLockAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.Unlock">
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.UnlockAsync">
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.UnlockAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.UnlockAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnUnlockAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetNxProperties">
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetNxPropertiesAsync">
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetNxPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.GetNxPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnGetNxPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetNxProperties(Qlik.Engine.NxFieldProperties)">
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetNxPropertiesAsync(Qlik.Engine.NxFieldProperties)">
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetNxPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxFieldProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetAndMode(System.Boolean)">
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetAndModeAsync(System.Boolean)">
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SetAndModeAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAlternative(System.Boolean)">
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAlternativeAsync(System.Boolean)">
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAlternativeAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.SelectAlternativeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnSelectAlternativeAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LowLevelSelect(System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LowLevelSelectAsync(System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LowLevelSelectAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.LowLevelSelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnLowLevelSelectAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.Clear">
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAsync">
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.ClearAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Field.OnClearAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Field.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.Variable">
            <summary>This class describes all the methods that apply at variable level.</summary>
        </member>
        <member name="M:Qlik.Engine.Variable.GetContent">
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetContentAsync">
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetContentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.OnGetContentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetRawContent">
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetRawContentAsync">
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetRawContentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetRawContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.OnGetRawContentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetContent(System.String,System.Boolean)">
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetContentAsync(System.String,System.Boolean)">
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetContentAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.OnSetContentAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.ForceContent(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.ForceContentAsync(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.ForceContentAsync(Qlik.Engine.AsyncHandle,System.String,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetNxProperties">
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetNxPropertiesAsync">
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetNxPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.GetNxPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.OnGetNxPropertiesAsync(Qlik.Engine.Communication.IO.Response)">
            <summary /><param name="response" /><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetNxProperties(Qlik.Engine.NxVariableProperties)">
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetNxPropertiesAsync(Qlik.Engine.NxVariableProperties)">
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.SetNxPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="M:Qlik.Engine.Variable.#ctor(System.Int32)">
            <summary /><param name="handle" />
        </member>
        <member name="T:Qlik.Engine.SearchContextType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchContextType.CONTEXT_CLEARED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchContextType.CONTEXT_LOCKED_FIELDS_ONLY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchContextType.CONTEXT_CURRENT_SELECTIONS">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchFieldSelectionMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchFieldSelectionMode.ONE_AND_ONLY_ONE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchGroupItemType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchGroupItemType.FIELD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchGroupItemType.GENERIC_OBJECT">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchGroupType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchGroupType.DATASET_GROUP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.SearchGroupType.GENERIC_OBJECTS_GROUP">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SearchAssociationResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchAssociationResult.FieldNames">
            <summary>List of the fields that contains search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchAssociationResult.SearchTerms">
            <summary>List of the search terms.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchAssociationResult.FieldDictionaries">
            <summary>Information about the fields containing search hits.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchAssociationResult.SearchTermsMatched">
            <summary>List of search results.
                            The maximum number of search results in this list is set by qPage/qCount.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchAssociationResult.TotalSearchResults">
            <summary>Total number of search results.
                            This number is not limited by qPage/qCount.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchCharRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchCharRange.CharPos">
            <summary>Starting position of the match in the search result, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchCharRange.CharCount">
            <summary>Length of the match in the search result.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchCharRange.Term">
            <summary>Position of the term in the list of search terms, starting from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchCombinationOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchCombinationOptions.SearchFields">
            <summary>List of the search fields.
                            If empty, the search is performed in all fields of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchCombinationOptions.Context">
            <summary>Search context.
                            The default value is LockedFieldsOnly.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchCombinationOptions.CharEncoding">
            <summary>Encoding used to compute qRanges of type SearchCharRange.
                            Only affects the computation of the ranges. It does not impact the encoding of the text.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchCombinationOptions.Attributes">
            <summary>Optional.
                             
                                For SearchSuggest method, this array is empty.
                                For SearchResults method, this array is empty, or contains qNum and/or qElemNum. It allows the user to request details in the outputted SearchGroupItemMatch. For more information, see SearchGroupItemMatch</summary>
        </member>
        <member name="T:Qlik.Engine.SearchFieldDictionary">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchFieldDictionary.Field">
            <summary>Position of the field in the list of fields, starting from 0.
                            The list of fields is defined in qResults/qFieldNames and contains the search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchFieldDictionary.Result">
            <summary>List of the matching values.
                            The maximum number of values in this list is set by qMaxNbrFieldMatches.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchFieldMatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchFieldMatch.Field">
            <summary>Position of the field in the list of fields, starting from 0.
                            The list of fields is defined in qResults/qFieldNames and contains the search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchFieldMatch.Values">
            <summary>Positions of the matching values in the search results.
                            The maximum number of values in this list is defined by qMaxNbrFieldMatches.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchFieldMatch.Terms">
            <summary>Positions of the search terms, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchFieldMatch.NoOfMatches">
            <summary>Number of search hits in the field.
                            The number of values in qValues and the value of qNoOfMatches are equal if qMaxNbrFieldMatches is -1.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchGroup">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroup.Id">
            <summary>Identifier of the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroup.GroupType">
            <summary>Type of the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroup.SearchTermsMatched">
            <summary>Indexes of the search terms that are included in the group. These search terms are related to the list of terms defined in SearchResult.qSearchTerms.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroup.TotalNumberOfItems">
            <summary>Total number of distinct items in the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroup.Items">
            <summary>List of items in the search group.
                            The group items are numbered from the value of SearchGroupOptions.qOffset to the value of SearchGroupOptions.qOffset + SearchGroupOptions.qCount</summary>
        </member>
        <member name="T:Qlik.Engine.SearchGroupItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroupItem.ItemType">
            <summary>Type of the group item.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItem.TotalNumberOfMatches">
            <summary>Total number of distinct matches in the search group item.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItem.Identifier">
            <summary>Identifier of the item.
                            It corresponds to:
                             
                                The name of the field, if the type of the search group is data set.
                                The id of the generic object if the type of the search group is generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItem.ItemMatches">
            <summary>List of matches in the search group item.
                            The group item matches are numbered from the value of SearchGroupItemOptions.qOffset to the value of SearchGroupItemOptions.qOffset + SearchGroupItemOptions.qCount.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItem.SearchTermsMatched">
            <summary>Indexes of the search terms that are included in the group item. These search terms are related to the list of terms defined in SearchResult.qSearchTerms.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchGroupItemMatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemMatch.Text">
            <summary>Search match value.
                            Value of the search group item.
                            If the match is found in a field, it corresponds to the value of the field.
                            If the match is found in a generic object property, it corresponds to the property value.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemMatch.FieldSelectionMode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemMatch.Ranges">
            <summary>List of ranges.
                            For example, if the search terms are Price and Make, and the search group item value is Make by Price vs Mileage, then there are two ranges: one for Price and one for Make.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemMatch.Attributes">
            <summary>Provides detail of the match as requested by the user in SearchObjectsOptions.qAttributes or SearchCombinationOptions.qAttributes
                            If the user requests SearchObjects or SearchResults with an empty qAttributes option, the outputted qAttributes is returned empty.
                            For SearchObjects requested with qProperty, the SearchGroupItemMatch.qAttributes return value contains [“qProperty”, "qMetaDef/title”] if the match has been found in the title of the item. For dimension values, the returned qProperty will be “*”.
                            For SearchResults requested with qNum, the SearchGroupItemMatch.qAttributes return value contains ["qNum", N] where N is the numeric value of the element or NaN if the value is not numeric.
                            For SearchResults requested with qElemNum, the SearchGroupItemMatch.qAttributes return value contains ["qElemNum", N] where N is the value index of the element.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchGroupItemOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemOptions.GroupItemType">
            <summary>Type of the group item. Can be
                             
                                GenericObject: the type of the search group item is a generic object. Group items have this type when you are calling SearchObjects.
                                Field: the type of the search group item is a field. Group items have this type when you are calling SearchResults.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemOptions.Offset">
            <summary>Position starting from 0.
                            The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupItemOptions.Count">
            <summary>Maximum number of matches per item (in qItemMatches[ ]).
                            The default value is -1: all values are returned.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchGroupOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchGroupOptions.GroupType">
            <summary>Type of the group. Can be:
                             
                                GenericObjectType: the type of the search group item is a generic object. Groups have this type when you are calling SearchObjects.
                                DatasetType: type of the search group item is a dataset association. Groups have this type when you are calling SearchResults.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupOptions.Offset">
            <summary>Position starting from 0.
                            The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchGroupOptions.Count">
            <summary>Maximum number of items per group (in qItems[ ]).
                            The default value is -1; all values are returned.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchMatchCombination">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchMatchCombination.Id">
            <summary>Index of the search result, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchMatchCombination.FieldMatches">
            <summary>Information about the search matches.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchObjectOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchObjectOptions.Attributes">
            <summary>This array is either empty or contains qProperty.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchObjectOptions.CharEncoding">
            <summary>Encoding used to compute qRanges of type SearchCharRange.
                            Only affects the computation of the ranges. It does not impact the encoding of the text.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchPage.Offset">
            <summary>Position from the top, starting from 0.
                             
 
If the offset is set to 0, the first search result to be returned is at position 0.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchPage.Count">
            <summary>Number of search groups to return (in qSearchGroupArray).</summary>
        </member>
        <member name="P:Qlik.Engine.SearchPage.MaxNbrFieldMatches">
            <summary>Maximum number of matching values to return per search result.
                            The default value is -1; all values are returned.
                            This property is to be used with the SearchAssociations method.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchPage.GroupOptions">
            <summary>Options of the search groups.
                            If this property is not set, all values are returned.
                            This property is to be used with the SearchResults method or the SearchObjects method.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchPage.GroupItemOptions">
            <summary>Options of the search group items.
                            If this property is not set, all values are returned.
                            This property is to be used with the SearchResults method or the SearchObjects method.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchResult.SearchTerms">
            <summary>List of the search terms.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchResult.TotalNumberOfGroups">
            <summary>Total number of groups.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchResult.SearchGroupArray">
            <summary>List of search groups.
                            The groups are numbered from the value of SearchPage.qOffset to the value of SearchPage.qOffset + SearchPage.qCount.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchSuggestionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchSuggestionResult.Suggestions">
            <summary>List of suggestions.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchSuggestionResult.FieldNames">
            <summary>List of field names that contain search hits.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchSuggestItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchSuggestItem.Value">
            <summary>Value of the suggestion.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchSuggestItem.Term">
            <summary>Index of the suggestion value.
                            The indexing starts from 0 and from the left.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchTermResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SearchTermResult.Text">
            <summary>Text of the associated value.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchTermResult.ElemNumber">
            <summary>Element number of the associated value.</summary>
        </member>
        <member name="P:Qlik.Engine.SearchTermResult.Ranges">
            <summary>List of ranges.
                            For example, if the user searches the term read and the associative value is Reading, then the corresponding range would be Read in Reading.</summary>
        </member>
        <member name="T:Qlik.Engine.SearchMatchCombinations">
            <summary />
        </member>
        <member name="T:Qlik.Engine.BNFDefMetaType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFDefMetaType.NOT_META">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFDefMetaType.META_DOC_NAME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFDefMetaType.META_RET_TYPE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFDefMetaType.META_DEFAULT_VALUE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.BNFType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFType.SCRIPT_TEXT_SCRIPT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.BNFType.SCRIPT_TEXT_EXPRESSION">
            <summary />
        </member>
        <member name="T:Qlik.Engine.DriveType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.REMOVABLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.FIXED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.NETWORK">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.CD_ROM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.RAM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.DriveType.UNKNOWN_TYPE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FileType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_CSV">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_FIX">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_DIF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_EXCEL_BIFF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_EXCEL_OOXML">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_HTML">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_QVD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_XML">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_QVX">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_JSON">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FileType.FILE_TYPE_KML">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FilterType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FilterType.FILTER_TYPE_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FilterType.FILTER_TYPE_RAW">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FolderItemType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FolderItemType.FOLDER_ITEM_FOLDER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FolderItemType.FOLDER_ITEM_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FolderItemType.FOLDER_ITEM_OTHER">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FunctionGroup">
            <summary>One of:</summary>
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_ALL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_NONE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_AGGR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_NUMERIC">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_RANGE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_EXPONENTIAL_AND_LOGARITHMIC">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_TRIGONOMETRIC_AND_HYPERBOLIC">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_FINANCIAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_MATH_CONSTANT_AND_PARAM_FREE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_COUNTER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_STRING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_MAPPING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_INTER_RECORD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_CONDITIONAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_LOGICAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_NULL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_SYSTEM">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_FILE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_TABLE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_DATE_AND_TIME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_NUMBER_INTERPRET">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_FORMATTING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_COLOR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_RANKING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_GEO">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_EXTERNAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_PROBABILITY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_ARRAY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FunctionGroup.FUNC_GROUP_LEGACY">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericConnectMachine">
            <summary />
        </member>
        <member name="F:Qlik.Engine.GenericConnectMachine.CONNECT_DEFAULT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.GenericConnectMachine.CONNECT_64">
            <summary />
        </member>
        <member name="F:Qlik.Engine.GenericConnectMachine.CONNECT_32">
            <summary />
        </member>
        <member name="T:Qlik.Engine.BNFDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.BNFDef.Bnf">
            <summary>Array of token references that all together build up the definition of the current token.
                            Generally, if the array is not empty, the definition is a BNF rule (qIsBnfRule is set to true). However, some BNF rules do have an empty array (qIsBnfRule is set to true, but qBnf is empty).</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.Nbr">
            <summary>Number of the current token definition.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.PNbr">
            <summary>Number of the parent rule definition.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.HelpId">
            <summary>Reference identifier to a function described in the documentation. The identifier is stored in the definition of the token containing the function name.
                            Is not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.Name">
            <summary>Token name.
                            One of:
                             
                                a rule name
                                an identifier
                                a literal value</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.Str">
            <summary>Literal string of the token.
                            Examples: 'Round' and '('.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.IsBnfRule">
            <summary>If set to true, a list of related rule tokens is assigned to qBnf .
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.ScriptStatement">
            <summary>If set to true, the definition specifies a script statement.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.ControlStatement">
            <summary>If set to true, the definition specifies a control statement.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.BnfLiteral">
            <summary>If set to true, the definition specifies a literal token.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.QvFunc">
            <summary>If set to true, the definition is related to a Qlik Sense function. It cannot be an aggregation function.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.AggrFunc">
            <summary>If set to true, the definition is related to an aggregation function.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.FG">
            <summary>Group of the function.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.FieldFlag">
            <summary>If set to true, the definition is related to a field.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.MT">
            <summary>Type of the data.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.Depr">
            <summary>Indicates whether a script statement, a chart or a script function is deprecated (not recommended for use).
                            If set to true, the script statement or the function is not recommended for use in Qlik Sense.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BNFDef.FGList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CodePage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CodePage.Number">
            <summary>Number of the code page</summary>
        </member>
        <member name="P:Qlik.Engine.CodePage.Name">
            <summary>Name of the code page</summary>
        </member>
        <member name="P:Qlik.Engine.CodePage.Description">
            <summary>Description of the code page</summary>
        </member>
        <member name="T:Qlik.Engine.Connection">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Connection.Id">
            <summary>Identifier of the connection.
                            Is generated by the engine and is unique.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.Name">
            <summary>Name of the connection.
                            This parameter is mandatory and must be set when creating or modifying a connection.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.ConnectionString">
            <summary>One of:
                             
                                ODBC CONNECT TO [&lt;provider name&gt;]
                                OLEDB CONNECT TO [&lt;provider name&gt;]
                                CUSTOM CONNECT TO [&lt;provider name&gt;]
                                "&lt;local absolute or relative path,UNC path &gt;"
                                "&lt;URL&gt;"
                             
                            Connection string.
                            This parameter is mandatory and must be set when creating or modifying a connection.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.Type">
            <summary>One of:
                             
                                ODBC
                                OLEDB
                                &lt;Name of the custom connection file&gt;
                                folder
                                internet
                             
                            Type of the connection.
                            This parameter is mandatory and must be set when creating or modifying a connection.
                            For ODBC, OLEDB and custom connections, the engine checks that the connection type matches the connection string.
                            The type is not case sensitive.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.UserName">
            <summary>Name of the user who creates the connection.
                            This parameter is optional; it is only used for OLEDB, ODBC and CUSTOM connections.
                            A call to GetConnection method does not return the user name.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.Password">
            <summary>Password of the user who creates the connection.
                            This parameter is optional; it is only used for OLEDB, ODBC and CUSTOM connections.
                            A call to GetConnection method does not return the password.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.ModifiedDate">
            <summary>Is generated by the engine.
                            Creation date of the connection or last modification date of the connection.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.Meta">
            <summary>Information about the connection.</summary>
        </member>
        <member name="P:Qlik.Engine.Connection.LogOn">
            <summary>Select which user credentials to use to connect to the source.
                             
                                LOG_ON_SERVICE_USER: Disables
                                LOG_ON_CURRENT_USER: Enables</summary>
        </member>
        <member name="T:Qlik.Engine.ConnectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ConnectStatement">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Username">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Password">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ObsoleteType1">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ModifiedDate">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ObsoleteType2">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ObsoleteType3">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.Meta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.LogOn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ConnectionInfo.SupportFileStreaming">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CustomConnector">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CustomConnector.Provider">
            <summary>Name of the custom connector file.</summary>
        </member>
        <member name="P:Qlik.Engine.CustomConnector.Parent">
            <summary>Name of the parent folder that contains the custom connector file.</summary>
        </member>
        <member name="P:Qlik.Engine.CustomConnector.DisplayName">
            <summary>Name of the custom connector as displayed in the Qlik interface.</summary>
        </member>
        <member name="P:Qlik.Engine.CustomConnector.MachineMode">
            <summary>Mode of the machine (64 or 32 bits).</summary>
        </member>
        <member name="P:Qlik.Engine.CustomConnector.SupportFileStreaming">
            <summary />
        </member>
        <member name="T:Qlik.Engine.Database">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Database.Name">
            <summary>Name of the database.</summary>
        </member>
        <member name="P:Qlik.Engine.Database.IsDefault">
            <summary>Is set to true if the database is set by default.</summary>
        </member>
        <member name="T:Qlik.Engine.DatabaseInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.DBMSName">
            <summary>Name of the product accessed by the provider</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.DBUsage">
            <summary>If set to true, it means that the data source contains some databases.</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.OwnerUsage">
            <summary>If set to true, it means that the data source contains some owners.</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.DBSeparator">
            <summary>Character string used after the database name
                            Example with separator ".":
                            FROM LinkedTablesData.dbo.Months
                            Where:
                             
                                LinkedTablesData is the database name
                                dbo is the owner name
                                Months is the table name</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.OwnerSeparator">
            <summary>Character string used after the owner name
                            Example with separator ".":
                            FROM LinkedTablesData.dbo.Months
                            Where:
                             
                                LinkedTablesData is the database name
                                dbo is the owner name
                                Months is the table name</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.DBFirst">
            <summary>If set to true, it means that the database is displayed first, before the owners and tables.</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.QuotePreffix">
            <summary>Prefix used with field, database or owner names that contain special characters or keywords.</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.QuoteSuffix">
            <summary>Suffix used with field, database or owner names that contain special characters or keywords.</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.SpecialChars">
            <summary>List of the special characters</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.DefaultDatabase">
            <summary>Name of the default database</summary>
        </member>
        <member name="P:Qlik.Engine.DatabaseInfo.Keywords">
            <summary>List of the script keywords</summary>
        </member>
        <member name="T:Qlik.Engine.DatabaseOwner">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DatabaseOwner.Name">
            <summary>Name of the owner</summary>
        </member>
        <member name="T:Qlik.Engine.DataField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DataField.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.DataField.IsKey">
            <summary>Is set to true if the field is a primary key.</summary>
        </member>
        <member name="P:Qlik.Engine.DataField.OriginalFieldName">
            <summary>Is shown for fixed records.
                            qOriginalFieldName and qName are identical if no field names are used in the file.
                            qOriginalFieldName differs from qName if embedded file names are used in the file.</summary>
        </member>
        <member name="T:Qlik.Engine.DataRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DataRecord.Values">
            <summary>List of values inside the table.
                            The first values (in result/qPreview/0/qValues) correspond to the field names in the table.
                            The following values (from result/qPreview/1/qValues) are the values of the fields in the table.</summary>
        </member>
        <member name="T:Qlik.Engine.DataTable">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DataTable.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.DataTable.Type">
            <summary>Type of the table.
                            For examples: Table, View</summary>
        </member>
        <member name="T:Qlik.Engine.DataTableEx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DataTableEx.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.DataTableEx.Fields">
            <summary>List of the fields in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.DataTableEx.FormatSpec">
            <summary>List of format specification items, within brackets.
                            Examples of specification items:
                             
                                 file type
                                embedded labels, no labels
                                table is &lt;table name&gt;</summary>
        </member>
        <member name="T:Qlik.Engine.DelimiterInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DelimiterInfo.Name">
            <summary>Name of the delimiter.
                            Example:
                            "Tab_DELIMITER"</summary>
        </member>
        <member name="P:Qlik.Engine.DelimiterInfo.ScriptCode">
            <summary>Representation of the delimiter value that is used in the script.
                            Example:
                            "'\t'"</summary>
        </member>
        <member name="P:Qlik.Engine.DelimiterInfo.Number">
            <summary>Delimiter character number used by the engine to determine how to separate the values.</summary>
        </member>
        <member name="P:Qlik.Engine.DelimiterInfo.IsMultiple">
            <summary>Is set to true if multiple spaces are used to separate the values.</summary>
        </member>
        <member name="T:Qlik.Engine.DriveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DriveInfo.Drive">
            <summary>Value of the drive
                            Examples:
                             C:\\, E:\\</summary>
        </member>
        <member name="P:Qlik.Engine.DriveInfo.Type">
            <summary>Type of the drive.
                            Fixed means physical drive.</summary>
        </member>
        <member name="P:Qlik.Engine.DriveInfo.Name">
            <summary>Name of the drive.</summary>
        </member>
        <member name="P:Qlik.Engine.DriveInfo.TypeIdentifier">
            <summary>Information about the drive type.</summary>
        </member>
        <member name="P:Qlik.Engine.DriveInfo.UnnamedDrive">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FileDataFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.Type">
            <summary>Type of the file.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.Label">
            <summary>One of:
                             
                                embedded labels (field names are present in the file)
                                no labels
                                explicit labels (for DIFfiles)</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.Quote">
            <summary>One of:
                             
                                None (no quotes)
                                MSQ (Modern Style Quoting)
                                 
                                    Standard (quotes " " or ' ' can be used, but only if they are the first and last non blank characters of a field value.)
                                 
                             
                            This property is used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.Comment">
            <summary>String that marks the beginning of the comment line.
                            Example: “#” or “//”
                            The engine ignores the commented lines during the data load.
                            This property is only used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.Delimiter">
            <summary>Information about the delimiter.
                            This property is used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.CodePage">
            <summary>Character set used in the file.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.HeaderSize">
            <summary>Size of the header.
                            Example: If the header size is 2, the first two rows in the file are considered as header and not as data. The header can contain the field names.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.RecordSize">
            <summary>Record length.
                            Each record (row of data) contains a number of columns with a fixed field size.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.TabSize">
            <summary>Number of spaces that one tab character represents in the table file.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.IgnoreEOF">
            <summary>Is set to true, the end-of-file character is not taken into account during reload.
                            This property is used for delimited files and fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.FileDataFormat.FixedWidthDelimiters">
            <summary>Positions of the field breaks in the table.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="T:Qlik.Engine.FilterInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FilterInfo.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FilterInfo.WherePredicate">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FolderItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FolderItem.Name">
            <summary>Name of the folder item.</summary>
        </member>
        <member name="P:Qlik.Engine.FolderItem.Type">
            <summary>Type of the folder item.</summary>
        </member>
        <member name="T:Qlik.Engine.Function">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Function.Name">
            <summary>Name of the script function.</summary>
        </member>
        <member name="P:Qlik.Engine.Function.Group">
            <summary>Group of the script function.</summary>
        </member>
        <member name="P:Qlik.Engine.Function.Signature">
            <summary>Signature of the script function.
                            Gives general information about the function.</summary>
        </member>
        <member name="T:Qlik.Engine.OdbcDsn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.OdbcDsn.Name">
            <summary>Name of the ODBC connection.</summary>
        </member>
        <member name="P:Qlik.Engine.OdbcDsn.Description">
            <summary>Description of the ODBC connection.</summary>
        </member>
        <member name="P:Qlik.Engine.OdbcDsn.Bit32">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the version of ODBC is 32-bit.</summary>
        </member>
        <member name="P:Qlik.Engine.OdbcDsn.UserOnly">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the connection is User DSN. The connection works only for a specific user.</summary>
        </member>
        <member name="T:Qlik.Engine.OleDbProvider">
            <summary />
        </member>
        <member name="P:Qlik.Engine.OleDbProvider.Name">
            <summary>Name of the OLEDB provider.</summary>
        </member>
        <member name="P:Qlik.Engine.OleDbProvider.Description">
            <summary>Description of the OLEDB provider.</summary>
        </member>
        <member name="P:Qlik.Engine.OleDbProvider.Bit32">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the version of the OLEDB provider is 32-bit.</summary>
        </member>
        <member name="T:Qlik.Engine.ScriptSyntaxError">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.ErrLen">
            <summary>Length of the word where the error is located</summary>
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.TabIx">
            <summary>Number of the faulty section</summary>
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.LineInTab">
            <summary>Line number in the section where the error is located</summary>
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.ColInLine">
            <summary>Position of the erroneous text from the beginning of the line</summary>
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.TextPos">
            <summary>Position of the erroneous text from the beginning of the script</summary>
        </member>
        <member name="P:Qlik.Engine.ScriptSyntaxError.SecondaryFailure">
            <summary>The default value is false.</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsChangeType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxQrsChangeType.QRS_CHANGE_UNDEFINED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxQrsChangeType.QRS_CHANGE_ADD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxQrsChangeType.QRS_CHANGE_UPDATE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.NxQrsChangeType.QRS_CHANGE_DELETE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxConnectivityManagerGetResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxConnectivityManagerGetResponse.DataConnections">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxCustomProperty">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCustomProperty.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCustomProperty.Values">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxCustomProperty.Type">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxCustomProperty.#ctor">
            <summary>Creates an instance of the NxCustomProperty class</summary>
        </member>
        <member name="T:Qlik.Engine.NxEngineSSESetting">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.host">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.port">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.certificateFilePath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.privileges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.reconnectTimeout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.requestTimeout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxEngineSSESetting.fromIni">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxEngineSSESetting.#ctor">
            <summary>Creates an instance of the NxEngineSSESetting class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAddedDataSegment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAddedDataSegment.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAddedDataSegment.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAddedDataSegment.MetaDataObject">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsAddedDataSegment.#ctor">
            <summary>Creates an instance of the NxQrsAddedDataSegment class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAddedObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAddedObject.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAddedObject.ItemID">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsAddedObject.#ctor">
            <summary>Creates an instance of the NxQrsAddedObject class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsApp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.AppID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.FilePath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.LastReloadTime">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.SavedInProductVersion">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.Owner">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.Thumbnail">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.MigrationHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.FileSize">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsApp.CustomProperties">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsApp.#ctor">
            <summary>Creates an instance of the NxQrsApp class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAppContainer">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppContainer.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppContainer.AppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppContainer.AppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppContainer.DataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppContainer.AppDataSegments">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsAppContainer.#ctor">
            <summary>Creates an instance of the NxQrsAppContainer class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAppContentLibraryListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsAppDataSegmentOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppDataSegmentOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppDataSegmentOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppDataSegmentOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsAppFileMeta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppFileMeta.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppFileMeta.StartPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppFileMeta.Size">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppFileMeta.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppFileMeta.Attributes">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsAppFileMeta.#ctor">
            <summary>Creates an instance of the NxQrsAppFileMeta class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAppObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.Attributes">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppObject.AppObjectBlobId">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsAppObject.#ctor">
            <summary>Creates an instance of the NxQrsAppObject class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsAppResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppResponse.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppResponse.AppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppResponse.AppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppResponse.DataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsAppResponse.AppDataSegments">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsBulkRequest">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.ChangedObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.ChangedAppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.ChangedDataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.ChangedAppDataSegments">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsBulkRequest.ChangedStaticContent">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsChunk">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsChunk.Offset">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsChunk.Size">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsChunk.#ctor">
            <summary>Creates an instance of the NxQrsChunk class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsConnection">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.ConnectStatement">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.Username">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.Password">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.LogOn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnection.CustomProperties">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsConnection.#ctor">
            <summary>Creates an instance of the NxQrsConnection class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsConnectionOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnectionOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnectionOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsConnectionOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsContentLibraryListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsContentLibraryListItem.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsContentLibraryListItem.Name">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsContentLibraryListItem.#ctor">
            <summary>Creates an instance of the NxQrsContentLibraryListItem class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsCreateResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsCreateResponse.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsCreateResponse.AddedAppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsCreateResponse.AddedAppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsCreateResponse.AddedAppDataSegments">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsDatasegment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.Size">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.MetaDataObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsDatasegment.AppDataSegmentBlobID">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsDatasegment.#ctor">
            <summary>Creates an instance of the NxQrsDatasegment class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsEngineApp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsEngineApp.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsEngineApp.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsEngineApp.Meta">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsEngineApp.#ctor">
            <summary>Creates an instance of the NxQrsEngineApp class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsEngineService">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsEngineService.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsEngineService.settings">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsEngineService.#ctor">
            <summary>Creates an instance of the NxQrsEngineService class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsEngineSettings">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsExternalChangeInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.changeType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.EngineObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.EngineType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.QrsObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.QrsObjectType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsExternalChangeInfo.Prefix">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsExternalChangeInfo.#ctor">
            <summary>Creates an instance of the NxQrsExternalChangeInfo class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsMagicImportItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsMagicImportItem.BundledFile">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsMediaListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsObjectOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsObjectOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsObjectOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsObjectOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsRestEndpointHandle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRestEndpointHandle.value">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsRestEndpointHandle.#ctor">
            <summary>Creates an instance of the NxQrsRestEndpointHandle class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsRule">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.category">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.rule">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.resourceFilter">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.actions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.comment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsRule.disabled">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsStaticContentItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsStaticContentItem.UrlPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsStaticContentItem.FilePath">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsStaticContentListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsStaticContentOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsStaticContentOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsStaticContentOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxQrsSyncTransaction">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsSyncTransaction.TransactionObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxQrsSyncTransaction.WrittenChunks">
            <summary />
        </member>
        <member name="M:Qlik.Engine.NxQrsSyncTransaction.#ctor">
            <summary>Creates an instance of the NxQrsSyncTransaction class</summary>
        </member>
        <member name="T:Qlik.Engine.NxQrsUser">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxRules">
            <summary />
        </member>
        <member name="P:Qlik.Engine.NxRules.Rules">
            <summary />
        </member>
        <member name="T:Qlik.Engine.NxStreamListEntry">
            <summary>This struct is deprecated (not recommended to use).</summary>
        </member>
        <member name="P:Qlik.Engine.NxStreamListEntry.Name">
            <summary>Name of the stream</summary>
        </member>
        <member name="P:Qlik.Engine.NxStreamListEntry.Id">
            <summary>Identifier of the stream</summary>
        </member>
        <member name="M:Qlik.Engine.NxStreamListEntry.#ctor">
            <summary>Creates an instance of the NxStreamListEntry class</summary>
        </member>
        <member name="T:Qlik.Engine.GetDerivedFieldResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDerivedFieldResult.Fields">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDerivedFieldResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetHyperCubeContinuousDataResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetHyperCubeContinuousDataResult.DataPages">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetHyperCubeContinuousDataResult.AxisData">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ExportDataResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ExportDataResult.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ExportDataResult.Warnings">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateChildResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateChildResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateChildResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetTablesAndKeysResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetTablesAndKeysResult.Tr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetTablesAndKeysResult.K">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateGenericObjectResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericObjectResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericObjectResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateGenericDimensionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericDimensionResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericDimensionResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateGenericMeasureResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericMeasureResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericMeasureResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateVariableExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateVariableExResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateVariableExResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateDerivedDefinitionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateDerivedDefinitionResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateDerivedDefinitionResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateDerivedFieldsResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateDerivedFieldsResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateDerivedFieldsResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetDerivedFieldDimensionDefResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDerivedFieldDimensionDefResult.DimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDerivedFieldDimensionDefResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CheckExpressionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CheckExpressionResult.ErrorMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CheckExpressionResult.BadFieldNames">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CheckExpressionResult.DangerousFieldNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CheckNumberOrExpressionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CheckNumberOrExpressionResult.ErrorMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CheckNumberOrExpressionResult.BadFieldNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateGenericBookmarkResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericBookmarkResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateGenericBookmarkResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetMediaListResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetMediaListResult.List">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetMediaListResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetDatabaseTablePreviewResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDatabaseTablePreviewResult.Preview">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetDatabaseTablePreviewResult.RowCount">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetFileTableFieldsResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetFileTableFieldsResult.Fields">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetFileTableFieldsResult.FormatSpec">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetFileTablePreviewResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetFileTablePreviewResult.Preview">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetFileTablePreviewResult.FormatSpec">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetInteractResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetInteractResult.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetInteractResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateAppExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateAppExResult.DocId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateAppExResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateAppResult.Success">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateAppResult.AppId">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateSessionAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateSessionAppResult.SessionAppId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateSessionAppResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CreateSessionAppFromAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateSessionAppFromAppResult.SessionAppId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CreateSessionAppFromAppResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetBaseBNFResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetBaseBNFResult.BnfDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetBaseBNFResult.BnfHash">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GetBaseBNFStringResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetBaseBNFStringResult.BnfStr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.GetBaseBNFStringResult.BnfHash">
            <summary />
        </member>
        <member name="T:Qlik.Engine.GenericObjectIdentifier">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAppEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppEntry.ID">
            <summary>Identifier of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.Title">
            <summary>Title of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.Path">
            <summary>Path of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.LastReloadTime">
            <summary>Last reload time of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.ReadOnly">
            <summary>Is set to true if the app is read-only.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.Meta">
            <summary>Meta data.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppEntry.FileSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAppObjectList">
            <summary>Lists the app objects. Is the layout for AppObjectListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppObjectList.Items">
            <summary>Information about the list of dimensions</summary>
        </member>
        <member name="T:Qlik.Engine.IAppObjectListDef">
            <summary>Defines the list of objects in an app.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppObjectListDef.Type">
            <summary>Type of the app list.</summary>
        </member>
        <member name="P:Qlik.Engine.IAppObjectListDef.Data">
            <summary>Data that you want to include in the app list definition.
                            You need to enter the paths to the information you want to retrieve.</summary>
        </member>
        <member name="T:Qlik.Engine.IAppScript">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppScript.Script">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppScript.Meta">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAppScriptObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppScriptObject.Script">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppScriptObject.BreakpointList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAppScriptObject.FavoriteVariables">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAssociationScore">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAssociationScore.FieldPairName">
            <summary>Pair of fields.
                            &lt;FieldName1&gt; / &lt;FieldName2&gt;
                            Where:
                            &lt;FieldName1&gt; is a field in the table 1 (defined in qTable1)
                             &lt;FieldName2&gt; is a field in the table 2 (defined in qTable2)
                            If the field is a synthetic key, the name of the field is preceded by [Synthetic key]:.</summary>
        </member>
        <member name="P:Qlik.Engine.IAssociationScore.ScoreSummary">
            <summary>Flag used to interpret calculated scores.
                            One of the following values or sum of values that apply:
                             
                                0: The cardinal ratio cannot be zero but the symbol score and the row score can be zero.
                                -1: The fields do not have the same type.
                                -2: The number of rows of the field FieldName1 is zero.
                                -4: The number of distinct values of the field FieldName1 is zero.
                                -8: The number of rows of the field FieldName2 is zero.
                                -16: The number of distinct values of the field FieldName2 is zero.
                             
                            Example:
                            The number of rows of the field FieldName1 is zero, and the number of distinct values of the field FieldName2 is zero, then qScoreSummary is -18.</summary>
        </member>
        <member name="P:Qlik.Engine.IAssociationScore.Field1Scores">
            <summary>Association information about the field FieldName1 defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.IAssociationScore.Field2Scores">
            <summary>Association information about the field FieldName2 defined in qFieldPairName.</summary>
        </member>
        <member name="T:Qlik.Engine.IBookmarkFieldPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldPage.StartIndex">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldPage.EndIndex">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IBookmarkList">
            <summary>Lists the bookmarks. Is the layout for BookmarkListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkList.Items">
            <summary>Information about the list of bookmarks</summary>
        </member>
        <member name="T:Qlik.Engine.IBookmarkListDef">
            <summary>Defines the list of bookmarks.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="T:Qlik.Engine.IChildList">
            <summary>Lists the children of a generic object. Is the layout for ChildListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IChildList.Items">
            <summary>Information about the items in the app object</summary>
        </member>
        <member name="T:Qlik.Engine.IChildListDef">
            <summary>Defines the list of children of a generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.IChildListDef.Data">
            <summary>Data that you want to include in the child list definition.
                            You need to enter the paths to the information you want to retrieve.</summary>
        </member>
        <member name="T:Qlik.Engine.IContentLibraryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IContentLibraryList.Items">
            <summary>Information about the content library.</summary>
        </member>
        <member name="T:Qlik.Engine.IContentLibraryListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IContentLibraryListItem.Name">
            <summary>Name of the library.</summary>
        </member>
        <member name="P:Qlik.Engine.IContentLibraryListItem.AppSpecific">
            <summary>Is set to true if the library is specific to the app (not a global content library).</summary>
        </member>
        <member name="P:Qlik.Engine.IContentLibraryListItem.Meta">
            <summary>Information about publishing and permissions.</summary>
        </member>
        <member name="T:Qlik.Engine.IDimensionList">
            <summary>Lists the dimensions. Is the layout for DimensionListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IDimensionList.Items">
            <summary>Information about the list of dimensions</summary>
        </member>
        <member name="T:Qlik.Engine.IDimensionListDef">
            <summary>Defines the lists of dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.IDimensionListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.IDimensionListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="T:Qlik.Engine.IDoReloadExParams">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDoReloadExParams.Mode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDoReloadExParams.Partial">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDoReloadExParams.Debug">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IDoReloadExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDoReloadExResult.Success">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDoReloadExResult.ScriptLogFile">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IElse">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IEmbeddedSnapshot">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IEmbeddedSnapshotDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IExtensionList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IExtensionList.Items">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IExtensionListDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IFieldList">
            <summary>Lists the fields present in the data model viewer. Is the layout for FieldListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldList.Items">
            <summary>Array of items</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldListDef">
            <summary>Defines the fields to show.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowSystem">
            <summary>Shows the system tables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowHidden">
            <summary>Shows the hidden fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowSemantic">
            <summary>Show the semantic fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowSrcTables">
            <summary>Shows the tables and fields present in the data model viewer if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowDefinitionOnly">
            <summary>Shows the fields defined on the fly if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowDerivedFields">
            <summary>Shows the fields and derived fields if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldListDef.ShowImplicit">
            <summary>Shows the Direct Discovery measure fields if set to true.</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldScores">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldScores.FieldName">
            <summary>Field name.
                            One of the field names defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldScores.ReadableName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldScores.CardinalRatio">
            <summary>Cardinality of a column/field divided by the number of rows in the table.
                             If the cardinal ratio is 1, it means that the column is a candidate/primary key.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldScores.SymbolScore">
            <summary>Number of distinct matches between the two fields defined in qFieldPairName divided by the number of distinct values in the field qFieldName.
                            If 0, it means that there are no common values between the two fields defined in qFieldPairName.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldScores.RowScore">
            <summary>Number of matches between the two fields defined in qFieldPairName divided by the number of values in the field qFieldName.
                            If 0, it means that there are no common values between the two fields defined in qFieldPairName.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericAppObjectEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericAppObjectEntry.MetaData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericAppObjectEntry.Root">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericAppObjectMetaData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericAppObjectMetaData.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericAppObjectMetaData.Id">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericBookmarkEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkEntry.Properties">
            <summary>Information about the properties of the bookmark.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkEntry.Bookmark">
            <summary>Information about the bookmark.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericBookmarkLayout">
            <summary>Is the layout for GenericBookmarkProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkLayout.Info">
            <summary>Information about the object</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkLayout.Meta">
            <summary>Information on publishing and permissions</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkLayout.Bookmark">
            <summary>Information about the bookmark</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkLayout.FieldInfos">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericBookmarkProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkProperties.Info">
            <summary>Information about the bookmark.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmarkProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedDefinitionEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedDefinitionEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedDefinitionEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedDefinitionEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedDefinitionProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedDefinitionProperties.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedDefinitionProperties.DerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedDefinitionProperties.MetaDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedFieldEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedFieldEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedFieldsProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldsProperties.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldsProperties.DerivedDefinitionId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldsProperties.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDerivedFieldsProperties.MetaDef">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionInfo.Cardinal">
            <summary>Number of distinct field values</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionInfo.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionInfo.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionInfo.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericDimensionLayout">
            <summary>Is the layout for GenericDimensionProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionLayout.Info">
            <summary>Identifier and type of the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionLayout.Meta">
            <summary>Information about publishing and permissions.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionLayout.Dim">
            <summary>Name and label of the dimension, information about grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionLayout.DimInfos">
            <summary>Cardinal and tags related to the dimension.
                            Length of the longest value in the field.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericDimensionProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionProperties.Info">
            <summary>Identifier and type of the dimension.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionProperties.Dim">
            <summary>Definition of the dimension.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimensionProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericMeasureLayout">
            <summary>Is the layout for GenericMeasureProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureLayout.Info">
            <summary>Information about the object.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureLayout.Measure">
            <summary>Information about the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureLayout.Meta">
            <summary>Information on publishing and permissions.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericMeasureProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureProperties.Info">
            <summary>Information about the measure.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureProperties.Measure">
            <summary>Definition of the measure.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasureProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericObjectEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericObjectEntry.Property">
            <summary>Information about the generic object properties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectEntry.Children">
            <summary>Information about the children of the generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectEntry.EmbeddedSnapshotRef">
            <summary>Reference to a bookmark/snapshot that is embedded in the generic object.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericObjectLayout">
            <summary>Is the layout for GenericObjectProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.Info">
            <summary>Identifier and type of the generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.ExtendsId">
            <summary>Should be set to create an object that is linked to another object. Enter the identifier of the object you want to link to.
                            If you do not want to link your object, set this parameter to an empty string.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.HasSoftPatches">
            <summary>Is set to true if the generic object contains some properties that are not persistent (a soft patch was applied).</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.SelectionInfo">
            <summary>Information about the selections.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectLayout.StateName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericObjectProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericObjectProperties.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectProperties.ExtendsId">
            <summary>Should be set to create an object that is linked to another object. Enter the identifier of the linking object (i.e the object you want to link to).
                            This parameter is mandatory.
                            If you do not want to link your object, set this parameter to an empty string.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectProperties.MetaDef">
            <summary>Definition of the dynamic properties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericObjectProperties.StateName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericUserState">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericUserState.Bookmark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericUserState.Id">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericVariableEntry">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableEntry.Value">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableEntry.IsScriptCreated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableEntry.Properties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericVariableEntryList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableEntryList.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableEntryList.EntryList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericVariableLayout">
            <summary>Is the layout for GenericVariableProperties.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableLayout.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableLayout.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableLayout.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableLayout.Num">
            <summary>A value.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableLayout.IsScriptCreated">
            <summary>If set to true, it means that the variable was defined via script.</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericVariableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.MetaDef">
            <summary>Meta data.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.Name">
            <summary>Name of the variable.
                            The name must be unique.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.Comment">
            <summary>Comment related to the variable.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.NumberPresentation">
            <summary>Defines the format of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.IncludeInBookmark">
            <summary>Set this property to true to update the variable when applying a bookmark. The variable value will be persisted in the bookmark.
                            The value of a variable can affect the state of the selections.
                            Script variables cannot be persisted in the bookmark.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariableProperties.Definition">
            <summary>Definition of the variable.</summary>
        </member>
        <member name="T:Qlik.Engine.IHyperCube">
            <summary>Renders the properties of a hypercube. Is the layout for HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.Size">
            <summary>Defines the size of the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.Error">
            <summary>This parameter is optional and is displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.DimensionInfo">
            <summary>Information on the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.MeasureInfo">
            <summary>Information on the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.EffectiveInterColumnSortOrder">
            <summary>Sort order of the columns in the hypercube.
                            Column numbers are separated by a comma.
                            Example: [1,0,2] means that the first column to be sorted was the column 1, followed by the column 0 and the column 2.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.GrandTotalRow">
            <summary>Aggregate for measures of all values in the field.
                            The result value depends on the qAggrFunc defined in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.DataPages">
            <summary>Set of data.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.PivotDataPages">
            <summary>Set of data for pivot tables.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.StackedDataPages">
            <summary>Set of data for stacked tables.
                            Is empty if nothing has been defined in qInitialDataFetch in HyperCubeDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.Mode">
            <summary>Information about the mode of the visualization.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.NoOfLeftDims">
            <summary>Number of left dimensions
                            Default value is -1.
                            The index related to each left dimension depends on the position of the pseudo dimension (if any).
                            For example, a pivot table with:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                one pseudo dimension in position 1
                                3 left dimensions.
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the pseudo dimension
                                The index 2 corresponds to the left dimension City
                                Product and Category are top dimensions.
                             
                            Another example:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                one pseudo dimension in position -1
                                3 left dimensions.
                             
                            implies that:
                             
                                The index -1 corresponds to the pseudo dimension; the pseudo dimension is the most to the right
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the left dimension City
                                The index 2 corresponds to the left dimension Product
                                Category is a top dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.IndentMode">
            <summary>Is used for pivot tables only.
                            If set to true, the formatting of the results is slightly different.
                            This property is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.LastExpandedPos">
            <summary>Is used for pivot tables only.
                            Position of the last expended cell.
                            This property is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.HasOtherValues">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCube.TreeNodesOnDim">
            <summary>The total number of nodes on each dimension (only applicable when qMode = T).</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCube.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCube.ColumnOrder">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IHyperCubeDef">
            <summary>Defines the properties of a hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.Dimensions">
            <summary>Array of dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.Measures">
            <summary>Array of measures.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.InterColumnSortOrder">
            <summary>Defines the sort order of the columns in the hypercube.
                            Column numbers are separated by a comma.
                            Example: [1,0,2] means that the first column to be sorted should be the column 1, followed by the column 0 and the column 2.
                            The default sort order is the order in which the dimensions and measures have been defined in the hypercube. By default, the pseudo-dimension (if any) is the most to the right in the array.
                            The index of the pseudo-dimension (if any) is -1.
                            Pseudo dimensions only apply for pivot tables with more than one measure.
                            A pseudo dimension groups together the measures defined in a pivot table. You can neither collapse/expand a pseudo dimension nor make any selections in it.
                             Stacked pivot tables can only contain one measure.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.SuppressZero">
            <summary>Removes zero values.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.SuppressMissing">
            <summary>Removes missing values.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.InitialDataFetch">
            <summary>Initial data set.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.ReductionMode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.Mode">
            <summary>Defines the way the data are handled internally by the engine.
                            Default value is DATA_MODE_STRAIGHT.
                            A pivot table can contain several dimensions and measures whereas a stacked pivot table can contain several dimensions but only one measure.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.PseudoDimPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.NoOfLeftDims">
            <summary>Number of left dimensions.
                            Default value is -1. In that case, all dimensions are left dimensions.
                            The index related to each left dimension depends on the position of the pseudo dimension (if any).
                            For example, a pivot table with:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                 
                                    one pseudo dimension in position 1 (the position is defined in qInterColumnSortOrder)
                                    qInterColumnSortOrder is (0,-1,1,2,3)
                                 
                                3 left dimensions (qNoOfLeftDims is set to 3).
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the pseudo dimension
                                The index 2 corresponds to the left dimension City
                                Product and Category are top dimensions.
                             
                            Another example:
                             
                                 4 dimensions in the following order: Country, City, Product and Category
                                3 left dimensions (qNoOfLeftDims is set to 3).
                                one pseudo dimension
                                the property qInterColumnSortOrder is left empty.
                             
                            implies that:
                             
                                The index 0 corresponds to the left dimension Country
                                The index 1 corresponds to the left dimension City
                                The index 2 corresponds to the left dimension Product
                                Category is a top dimension.
                                The pseudo dimension is a top dimension</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.AlwaysFullyExpanded">
            <summary>If this property is set to true, the cells are always expanded. It implies that it is not possible to collapse any cells.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.MaxStackedCells">
            <summary>Maximum number of cells for an initial data fetch (set in qInitialDataFetch) when in stacked mode (qMode is K).
                            The default value is 5000.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.PopulateMissing">
            <summary>If this property is set to true, the missing symbols (if any) are replaced by 0 if the value is a numeric and by an empty string if the value is a string.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.ShowTotalsAbove">
            <summary>If set to true, the total (if any) is shown on the first row.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.IndentMode">
            <summary>This property applies for pivot tables and allows to change the layout of the table. An indentation is added to the beginning of each row.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the hypercube to be (re)calculated.
                            As long as the condition is not met, the engine does not perform a new calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.SortbyYValue">
            <summary>To enable the sorting by ascending or descending order in the values of a measure.
                            This property applies to pivot tables and stacked pivot tables.
                            In the case of a pivot table, the measure or pseudo dimension should be defined as a top dimension. The sorting is restricted to the values of the first measure in a pivot table.</summary>
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IHyperCubeDef.ColumnOrder">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IIf">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IIf.Expr">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IJsonArray">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IJsonObject">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IJsonProperty">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IJsonProperty.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IJSONWebTokenHeader">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IJSONWebTokenHeader.typ">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IJSONWebTokenHeader.alg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IJSONWebTokenHeader.kid">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ILayoutExclude">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ILayoutFieldInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILayoutFieldInfo.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILayoutFieldInfo.ValuesCount">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILayoutFieldInfo.ExcludedValuesCount">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IListObject">
            <summary>Renders the properties of a list object. Is the layout for ListObjectDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.Size">
            <summary>Defines the size of a list object.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.Error">
            <summary>This parameter is optional and is displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.DimensionInfo">
            <summary>Information about the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.Expressions">
            <summary>Lists the expressions in the list object.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObject.DataPages">
            <summary>Set of data.
                            Is empty if nothing has been defined in qInitialDataFetch in ListObjectDef.</summary>
        </member>
        <member name="T:Qlik.Engine.IListObjectDef">
            <summary>Defines the properties of a list object.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.StateName">
            <summary>Name of the alternate state.
                            Default is current selections $.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.LibraryId">
            <summary>Refers to a dimension stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.Def">
            <summary>Refers to a dimension stored in the list object.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.AutoSortByState">
            <summary>Defines the sorting by state.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.FrequencyMode">
            <summary>Defines the frequency mode. The frequency mode is used to calculate the frequency of a value in a list object.
                            This parameter is optional.
                            Default is NX_FREQUENCY_NONE.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.ShowAlternatives">
            <summary>If set to true, alternative values are allowed in qData.
                            This parameter is optional. The default value is false.
                            If set to false, no alternative values are displayed in qData. Values are excluded instead.
                            Note that on the contrary, the qStateCounts parameter counts the excluded values as alternative values.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.InitialDataFetch">
            <summary>Fetches an initial data set.</summary>
        </member>
        <member name="P:Qlik.Engine.IListObjectDef.Expressions">
            <summary>Lists the expressions in the list object.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.IMeasureList">
            <summary>Lists the measures. Is the layout for MeasureListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IMeasureList.Items">
            <summary>Information about the list of measures</summary>
        </member>
        <member name="T:Qlik.Engine.IMeasureListDef">
            <summary>Defines the list of measures.</summary>
        </member>
        <member name="P:Qlik.Engine.IMeasureListDef.Type">
            <summary>Type of the list</summary>
        </member>
        <member name="P:Qlik.Engine.IMeasureListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="T:Qlik.Engine.IMediaList">
            <summary>Lists the media files. Is the layout for MediaListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IMediaList.Items">
            <summary>Information about the list of media files.
                            In Qlik Sense Desktop, the media files are retrieved from:
                            %userprofile%\Documents\Qlik\Sense\Content\Default
                             
                            In Qlik Sense Enterprise, the media files are retrieved from:
                            &lt;installation_directory&gt;\Qlik\Sense\Repository\Content\Default
                            The default installation directory is ProgramData.</summary>
        </member>
        <member name="T:Qlik.Engine.IMediaListDef">
            <summary>Defines the list of media files.</summary>
        </member>
        <member name="T:Qlik.Engine.IMediaListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IMediaListItem.UrlDef">
            <summary>Relative path to the media file. The URL is static.
                            Media files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="P:Qlik.Engine.IMediaListItem.Url">
            <summary>Relative path to the media file.
                            Media files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAppLayout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.Title">
            <summary>Title of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.FileName">
            <summary>In Qlik Sense Enterprise, this property corresponds to the app identifier (GUID).
                            In Qlik Sense Desktop, this property corresponds to the full path of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.LastReloadTime">
            <summary>Date and time of the last reload of the app in ISO format.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.Modified">
            <summary>Is set to true if the app has been updated since the last save.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.HasScript">
            <summary>Is set to true if a script is defined in the app.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.StateNames">
            <summary>Array of alternate states.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.Meta">
            <summary>Information on publishing and permissions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.LocaleInfo">
            <summary>Information about the locale.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.HasData">
            <summary>Is set to true if the app contains data following a script reload.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.ReadOnly">
            <summary>If set to true, it means that the app is read-only.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.IsOpenedWithoutData">
            <summary>If set to true, it means that the app was opened without loading its data.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppLayout.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAppProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAppProperties.Title">
            <summary>App title.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppProperties.LastReloadTime">
            <summary>Last reload time of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppProperties.MigrationHash">
            <summary>Internal property reserved for app migration.
                             Patch version of the app.
                            Do not update.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppProperties.SavedInProductVersion">
            <summary>Internal property reserved for app migration.
                            The app is saved in this version of the product.
                            Do not update.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAppProperties.Thumbnail">
            <summary>App thumbnail.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAttrDimDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAttrDimDef.Def">
            <summary>Expression or field name.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimDef.LibraryId">
            <summary>LibraryId for dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimDef.SortBy">
            <summary>Sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimDef.Attribute">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxAttrDimInfo">
            <summary>Layout for NxAttrDimDef.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.Cardinal">
            <summary>Cardinality of the attribute expression.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.Size">
            <summary>Number of rows.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.FallbackTitle">
            <summary>The title for the attribute dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.Locked">
            <summary>The Locked value of the dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.Error">
            <summary>Validation error.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrDimInfo.IsCalculated">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxAttrExprDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAttrExprDef.Expression">
            <summary>Definition of the attribute expression.
                            Example: "Max(OrderID)"</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprDef.LibraryId">
            <summary>Definition of the attribute expression stored in the library..
                            Example: "MyGenericMeasure"</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprDef.Attribute">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxAttrExprInfo">
            <summary>Layout for NxAttrExprDef.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprInfo.Min">
            <summary>Minimum value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprInfo.Max">
            <summary>Maximum value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprInfo.FallbackTitle">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.INxAttrExprInfo.MinText">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAttrExprInfo.MaxText">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxAttributeDimValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAttributeDimValues.Values">
            <summary>List of values.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAttributeExpressionValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAttributeExpressionValues.Values">
            <summary>List of attribute expressions values.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAutoSortByStateDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAutoSortByStateDef.DisplayNumberOfRows">
            <summary>This parameter applies to list objects.
                            If the number of selected values in the list object is greater than the value set in qDisplayNumberOfRows, the selected lines are promoted at the top of the list object.
                            If qDisplayNumberOfRows is set to a negative value or to 0, the sort by state is disabled.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAxisData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAxisData.Axis">
            <summary>List of Axis data.</summary>
        </member>
        <member name="T:Qlik.Engine.INxAxisTicks">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxAxisTicks.Name">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAxisTicks.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="P:Qlik.Engine.INxAxisTicks.Ticks">
            <summary>List of ticks.</summary>
        </member>
        <member name="T:Qlik.Engine.INxBookmark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxBookmark.StateData">
            <summary>List of selections for each state.</summary>
        </member>
        <member name="P:Qlik.Engine.INxBookmark.UtcModifyTime">
            <summary>Time when the bookmark was created.</summary>
        </member>
        <member name="P:Qlik.Engine.INxBookmark.VariableItems">
            <summary>List of the variables in the app at the time the bookmark was created.</summary>
        </member>
        <member name="T:Qlik.Engine.INxCalcCond">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCalcCond.Cond">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCalcCond.Msg">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxCardinalities">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCardinalities.Cardinal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCardinalities.HypercubeCardinal">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCell.Text">
            <summary>Some text.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.Num">
            <summary>A value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.ElemNumber">
            <summary>Rank number of the value, starting from 0.
                            If the element number is a negative number, it means that the returned value is not an element number.
                            You can get the following negative values:
                             
                                -1: the cell is a Total cell. It shows a total.
                                -2: the cell is collapsed. Applies to pivot tables.
                                -3: the cell belongs to the group Others.
                                -4: the cell is empty. Applies to pivot tables.
                             
                             </summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.State">
            <summary>State of the value.
                            The default state for a measure is L.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.IsEmpty">
            <summary>Is set to true, if qText and qNum are empty.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.IsTotalCell">
            <summary>Is set to true if a total is displayed in the cell.
                            This parameter is optional. The default value is false.
                            Not applicable to list objects.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.IsOtherCell">
            <summary>Is set to true if the cell belongs to the group Others.
                            Dimension values can be set as Others depending on what has been defined in OtherTotalSpecProp.
                            This parameter is optional. The default value is false.
                            Not applicable to list objects.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.Frequency">
            <summary>Frequency of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.HighlightRanges">
            <summary>Search hits.
                            The search hits are highlighted.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.AttrDims">
            <summary>Attribute dimensions values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCell.IsNull">
            <summary>Is set to true if the value is Null.</summary>
        </member>
        <member name="T:Qlik.Engine.INxCellMark">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCellMark.DimIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCellMark.ElemNo">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxCellPosition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCellPosition.x">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCellPosition.y">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxConfigurationInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxConfigurationInfo.Features">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxConfigurationInfo.Services">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxConfigurationInfo.SystemProperties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxContinuousDataOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousDataOptions.Start">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousDataOptions.End">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousDataOptions.NbrPoints">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousDataOptions.MaxNbrTicks">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousDataOptions.MaxNumberLines">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxContinuousRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxContinuousRangeSelectInfo.Range">
            <summary>Range information.</summary>
        </member>
        <member name="P:Qlik.Engine.INxContinuousRangeSelectInfo.DimIx">
            <summary>Dimension index.</summary>
        </member>
        <member name="T:Qlik.Engine.INxCurrentSelectionItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.Total">
            <summary>Number of values in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.IsNum">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Is set to true if the field is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.Field">
            <summary>Name of the field that is selected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.Locked">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Is set to true if the field is locked.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.OneAndOnlyOne">
            <summary>Optional parameter. This parameter is displayed if its value is true.
                            Property that is set to a field. Is set to true if the field cannot be unselected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.TextSearch">
            <summary>Optional parameter.
                            Text that was used for the search. This parameter is filled when searching for a value and selecting it.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.SelectedCount">
            <summary>Number of values that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.Selected">
            <summary>Values that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.RangeInfo">
            <summary>Information about the range of selected values.
                            Is empty if there is no range of selected values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.SortIndex">
            <summary>Sort index of the field. Indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.StateCounts">
            <summary>Number of values in a particular state.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.SelectedFieldSelectionInfo">
            <summary>Information about the fields that are selected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.NotSelectedFieldSelectionInfo">
            <summary>Information about the fields that are not selected.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.SelectionThreshold">
            <summary>Maximum values to show in the current selections.
                            The default value is 6.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.ReadableName">
            <summary>Label that, if defined, is displayed in current selections instead of the actual expression.</summary>
        </member>
        <member name="P:Qlik.Engine.INxCurrentSelectionItem.IsHidden">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDataAreaPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDataAreaPage.Left">
            <summary>Position from the left.
                            Corresponds to the lowest possible value of the first measure (the measure on the x-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataAreaPage.Top">
            <summary>Position from the top.
                            Corresponds to the highest possible value of the second measure (the measure on the y-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataAreaPage.Width">
            <summary>Width of the page.
                            Corresponds to the highest possible value of the first measure (the measure on the x-axis).</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataAreaPage.Height">
            <summary>Height of the page.
                            The difference between qTop and qHeight gives the lowest possible value of the second measure (the measure on the y-axis).</summary>
        </member>
        <member name="T:Qlik.Engine.INxDataPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDataPage.Matrix">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataPage.Tails">
            <summary>Array of tails.
                            Is used for hypercube objects with multiple dimensions. It might happen that due to the window size some elements in a group cannot be displayed in the same page as the other elements of the group. Elements of a group of dimensions can be part of the previous or the next tail.
                            If there is no tail, the array is empty [ ].</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDataPage.IsReduced">
            <summary>Is set to true, if the data have been reduced.
                            The default value is false.</summary>
        </member>
        <member name="T:Qlik.Engine.INxDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinition.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinition.Parameters">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinition.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinition.GroupDefs">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDerivedDefinitionData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionData.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionData.NoOfFieldParameters">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionData.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionData.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionData.GroupDefs">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDerivedDefinitionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionInfo.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionInfo.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionInfo.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionInfo.NbrFieldParameters">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDerivedDefinitionParameter">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionParameter.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionParameter.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDerivedDefinitionParameterDesc">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionParameterDesc.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedDefinitionParameterDesc.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDerivedField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedField.Id">
            <summary>Identifier of the derived field.
                            The identifier is unique.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedField.Name">
            <summary>Combination of field name, definition and method.
                            Example:
                            OrderDate.MyDefinition.Year</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedField.Method">
            <summary>Method name associated to the derived field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedField.Expr">
            <summary>Expression of the derived field.
                            Example:
                            If qName is OrderDate.MyDefinition.Year, the expression is as follows:
                            =${Mydefinition(OrderDate).Year}</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedField.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="T:Qlik.Engine.INxDerivedFieldDescriptionList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedFieldDescriptionList.DerivedFieldLists">
            <summary>Information about the derived fields.</summary>
        </member>
        <member name="T:Qlik.Engine.INxDerivedFieldsData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedFieldsData.DerivedDefinitionName">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedFieldsData.FieldDefs">
            <summary>List of the derived fields.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedFieldsData.GroupDefs">
            <summary>List of the derived groups.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedFieldsData.Tags">
            <summary>List of tags on the derived fields.</summary>
        </member>
        <member name="T:Qlik.Engine.INxDerivedGroup">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDerivedGroup.Id">
            <summary>Identifier of the group.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedGroup.Name">
            <summary>Name of the derived group.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedGroup.Grouping">
            <summary>Grouping type.
                            The grouping should be either H or C (Grouping is mandatory for derived definitions).
                            Is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDerivedGroup.FieldDefs">
            <summary>List of the derived fields in the group.</summary>
        </member>
        <member name="T:Qlik.Engine.INxDimension">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimension.LibraryId">
            <summary>Refers to a dimension stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.Def">
            <summary>Refers to a dimension stored in the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.NullSuppression">
            <summary>If set to true, no null values are returned.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.IncludeElemValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimension.OtherTotalSpec">
            <summary>Sets the dimension limits. Each dimension of a hypercube is configured separately.
                            Defines if some values (grouped as Others) should be grouped together in the visualization.
                            For example in a pie chart all values lower than 200 could be grouped together.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.ShowTotal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimension.ShowAll">
            <summary>If set to true, all dimension values are shown.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.OtherLabel">
            <summary>This property is used when some dimension limits are set.
                            Label of the Others group. The default label is Others.
                            Example:"qOtherLabel":"=&lt;label&gt;"
                            or"qOtherLabel":{"qExpr":"=&lt;label&gt;"}
                            Where
                             
                                &lt;label&gt; is the label of the Others group.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.TotalLabel">
            <summary>If this property is set, the total of the calculated values is returned.
                            The default label is Total.
                            Example:
                            "qTotalLabel":"=&lt;label&gt;"
                             
                            or
                            "qTotalLabel":{"qExpr":"=&lt;label&gt;"}
                             
                            Where
                             
                                &lt;label&gt; is the label of the Totalgroup.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the dimension to be calculated.
                            If the calculation condition is not met, the dimension is excluded from the calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.AttributeExpressions">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.AttributeDimensions">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimension.CalcCondition">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.FallbackTitle">
            <summary>Corresponds to the label of the dimension that is selected.
                            If the label is not defined then the field name is used.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Locked">
            <summary>Is set to true if the field is locked.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.SortIndicator">
            <summary>Sort indicator.
                            This parameter is optional.
                            The default value is no sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.GroupFallbackTitles">
            <summary>Array of dimension labels.
                            Contains the labels of all dimensions in a hierarchy group (for example the labels of all dimensions in a drill down group).</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.GroupPos">
            <summary>Index of the dimension that is currently in use.
                            qGroupPos is set to 0 if there are no hierarchical groups (drill-down groups) or cycle groups.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.StateCounts">
            <summary>Number of values in a particular state.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.DimensionType">
            <summary>Binary format of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Grouping">
            <summary>Defines the grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.NumFormat">
            <summary>Format of the field.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.IsAutoFormat">
            <summary>This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's definition.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.GroupFieldDefs">
            <summary>Array of field names.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Min">
            <summary>Minimum value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Max">
            <summary>Maximum value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.ContinuousAxes">
            <summary>Is continuous axis used.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.IsCyclic">
            <summary>Is a cyclic dimension used.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.DerivedField">
            <summary>Is derived field is used as a dimension.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.AttrExprInfo">
            <summary>Array of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.AttrDimInfo">
            <summary>Array of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.IsCalculated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.IsOneAndOnlyOne">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDimensionInfo.Cardinalities">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDownloadInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDownloadInfo.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDownloadInfo.FileSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxDownloadOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDownloadOptions.BookmarkId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxDownloadOptions.Expires">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxEngineVersion">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineVersion.ComponentVersion">
            <summary>Version number of the Qlik engine component.</summary>
        </member>
        <member name="T:Qlik.Engine.INxExpansionPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpansionPath.Left">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpansionPath.Positions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxExpressionCubeDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpressionCubeDef.If">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpressionCubeDef.Expression">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxExpressionCubeExpr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpressionCubeExpr.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxExpressionCubeExpr.NumFormat">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxFeatureConfiguration">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.IsDesktop">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.AutoSave">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.Publishing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.QuickDataLoad">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.UploadToCloud">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.SSOEnabled">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFeatureConfiguration.ColorByDisable">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxFieldDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDerivedDefinition.Expression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDerivedDefinition.Tags">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxFieldDescription">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsHidden">
            <summary>If set to true, it means that the field is hidden.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsSystem">
            <summary>If set to true, it means that the field is a system field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.Cardinal">
            <summary>Number of distinct field values</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsDefinitionOnly">
            <summary>If set to true, it means that the field is a field on the fly.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.DerivedFieldData">
            <summary>Lists the derived fields if any.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsDetail">
            <summary>Is used for Direct Discovery.
                            If set to true, it means that the type of the field is detail.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.IsImplicit">
            <summary>Is used for Direct Discovery.
                            If set to true, it means that the type of the field is measure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldDescription.ReadableName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxFieldDescriptor">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDescriptor.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldDescriptor.Expr">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxFieldProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldProperties.OneAndOnlyOne">
            <summary>This parameter is set to true, if the field has one and only one selection (not 0 and not more than 1).
                            If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field.
                            The property OneAndOnlyOne can be set to true if one and only value has been selected in the field prior to setting the property.</summary>
        </member>
        <member name="T:Qlik.Engine.INxFieldSelectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxFieldSelectionInfo.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxFieldSelectionInfo.FieldSelectionMode">
            <summary>Selection mode.</summary>
        </member>
        <member name="T:Qlik.Engine.INxGeoBoundingBox">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoBoundingBox.Top">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoBoundingBox.Left">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoBoundingBox.Bottom">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoBoundingBox.Right">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxGeoCoordinate">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoCoordinate.Lat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGeoCoordinate.Lon">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxGetBookmarkOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGetBookmarkOptions.Types">
            <summary>List of object types.</summary>
        </member>
        <member name="P:Qlik.Engine.INxGetBookmarkOptions.Data">
            <summary>Set of data.</summary>
        </member>
        <member name="T:Qlik.Engine.INxGetObjectOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGetObjectOptions.Types">
            <summary>List of object types.</summary>
        </member>
        <member name="P:Qlik.Engine.INxGetObjectOptions.IncludeSessionObjects">
            <summary>Set to true to include session objects.
                            Default: false</summary>
        </member>
        <member name="P:Qlik.Engine.INxGetObjectOptions.Data">
            <summary>Set of data.</summary>
        </member>
        <member name="T:Qlik.Engine.INxGroupDerivedDefinition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGroupDerivedDefinition.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGroupDerivedDefinition.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGroupDerivedDefinition.FieldDerivedDefinitionNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxGroupTail">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxGroupTail.Up">
            <summary>Number of elements that are part of the previous tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight
                            This parameter is optional. Is not shown if the value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxGroupTail.Down">
            <summary>Number of elements that are part of the next tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight
                            This parameter is optional. Is not shown if the value is 0.</summary>
        </member>
        <member name="T:Qlik.Engine.INxHighlightRanges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxHighlightRanges.Ranges">
            <summary>Ranges of highlighted values</summary>
        </member>
        <member name="T:Qlik.Engine.INxInlineDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.Grouping">
            <summary>Used to define a cyclic group or drill-down group.
                            This parameter is optional.
                            Default value is no grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.FieldDefs">
            <summary>Array of field names.
                            When creating a grouped dimension, more than one field name is defined.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.FieldLabels">
            <summary>Array of field labels.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.SortCriterias">
            <summary>Defines the sorting criteria in the field.
                            This parameter is optional.
                            Default is to sort by alphabetical order, ascending.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.NumberPresentations">
            <summary>Defines the format of the value.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.ActiveField">
            <summary>Index of the active field in a cyclic dimension.
                            This parameter is optional. The default value is 0.
                            This parameter is used in case of cyclic dimensions (qGrouping is C).</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineDimensionDef.LabelExpression">
            <summary>Label expression.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.INxInlineMeasureDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Label">
            <summary>Name of the measure.
                            This parameter is optional.
                            An empty string is returned as a default value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Description">
            <summary>Description of the measure.
                            This parameter is optional.
                            An empty string is returned as a default value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Tags">
            <summary>Name connected to the measure that is used for search purposes.
                            This parameter is optional.
                            A measure can have several tags.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Grouping">
            <summary>Default value is no grouping.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Def">
            <summary>Definition of the expression in the measure.
                            Example: Sum (OrderTotal)
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.NumFormat">
            <summary>Format of the field.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Relative">
            <summary>If set to true, percentage values are returned instead of absolute numbers.
                            This parameter is optional. Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.BrutalSum">
            <summary>If set to true, the sum of rows total should be used rather than real expression total.
                            This parameter is optional and applies to straight tables.
                            Default is false. If using the Qlik Sense interface, it means that the total mode is set to Expression Total.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.AggrFunc">
            <summary>Aggregate function.
                             For more information on the aggregate function syntax, see the section Working with Qlik Sense on the online help portal.
                            The default value is 0 (Sum of rows)
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Accumulate">
            <summary>• 0 means no accumulation
                            • 1 means full accumulation (each y-value accumulates all previous y-values of the expression)
                            • ≥ 2 means accumulate as many steps as the qAccumulate value
                            This parameter is optional.
                            Default is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.ActiveExpression">
            <summary>Index of the active expression in a cyclic measure. The indexing starts from 0.
                            This parameter is optional. The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.Expressions">
            <summary>Array of expressions. This parameter is used in case of cyclic measures (qGrouping is C). List of the expressions in the cyclic group.</summary>
        </member>
        <member name="P:Qlik.Engine.INxInlineMeasureDef.LabelExpression">
            <summary>Label expression.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.INxLayoutErrors">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLayoutErrors.ErrorCode">
            <summary>Error code.</summary>
        </member>
        <member name="T:Qlik.Engine.INxLibraryDimension">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimension.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimension.FieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimension.FieldLabels">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimension.LabelExpression">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxLibraryDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimensionDef.Grouping">
            <summary>Information about the grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimensionDef.FieldDefs">
            <summary>Array of dimension names.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimensionDef.FieldLabels">
            <summary>Array of dimension labels.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryDimensionDef.LabelExpression">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxLibraryMeasure">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.Label">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.Expressions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.ActiveExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasure.LabelExpression">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxLibraryMeasureDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.Label">
            <summary>Label of the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.Def">
            <summary>Definition of the measure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.Grouping">
            <summary>Used to define a cyclic group or drill-down group.
                            This parameter is optional.
                            Default value is no grouping.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.Expressions">
            <summary>Array of expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.ActiveExpression">
            <summary>Index to the active expression in a measure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLibraryMeasureDef.LabelExpression">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxLinkedObjectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLinkedObjectInfo.RootId">
            <summary>Identifier of the root object.
                            If the linked object is a child, the root identifier is the identifier of the parent.
                            If the linked object is an app object, the root identifier is the same than the identifier of the linked object since the linked object is a root object.</summary>
        </member>
        <member name="P:Qlik.Engine.INxLinkedObjectInfo.Info">
            <summary>Information about the linked object.</summary>
        </member>
        <member name="T:Qlik.Engine.INxListObjectExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxListObjectExpression.Expr">
            <summary>Value of the expression.</summary>
        </member>
        <member name="P:Qlik.Engine.INxListObjectExpression.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="T:Qlik.Engine.INxListObjectExpressionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxListObjectExpressionDef.Expr">
            <summary>Value of the expression</summary>
        </member>
        <member name="P:Qlik.Engine.INxListObjectExpressionDef.LibraryId">
            <summary>Refers to an expression stored in the library.</summary>
        </member>
        <member name="T:Qlik.Engine.INxLocatedExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxLocatedExpression.Info">
            <summary>Identifier and type of the object that contains the expression</summary>
        </member>
        <member name="P:Qlik.Engine.INxLocatedExpression.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.INxLocatedExpression.Location">
            <summary>Location of the expression within the object</summary>
        </member>
        <member name="P:Qlik.Engine.INxLocatedExpression.Expression">
            <summary>Value of the expression</summary>
        </member>
        <member name="P:Qlik.Engine.INxLocatedExpression.ParentPath">
            <summary>This parameter is displayed if the expression is located in a child object. The path of the parent of the child is given.
                            The format of the parent path is:
                            /&lt;type of the parent&gt;:&lt;identifier of the parent&gt;</summary>
        </member>
        <member name="T:Qlik.Engine.INxMatchingFieldInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxMatchingFieldInfo.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.INxMatchingFieldInfo.Tags">
            <summary>List of tags</summary>
        </member>
        <member name="T:Qlik.Engine.INxMeasure">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxMeasure.LibraryId">
            <summary>Refers to a measure stored in the library.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.Def">
            <summary>Refers to a measure stored in the hypercube.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.SortBy">
            <summary>Defines the sort criteria.
                            This property is optional. The default value is sort by ascending alphabetic order.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.AttributeExpressions">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.AttributeDimensions">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.CalcCond">
            <summary>Specifies a calculation condition, which must be fulfilled for the measure to be calculated.
                            If the calculation condition is not met, the measure is excluded from the calculation.
                            This property is optional. By default, there is no calculation condition.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasure.CalcCondition">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxMeasureInfo">
            <summary>Layout for NxInlineMeasureDef.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.FallbackTitle">
            <summary>Corresponds to the label of the measure.
                            If the label is not defined then the measure name is used.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.ApprMaxGlyphCount">
            <summary>Length of the longest value in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.SortIndicator">
            <summary>Sort indicator.
                            This parameter is optional. The default value is no sorting.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.NumFormat">
            <summary>Format of the field.
                             
This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.Min">
            <summary>Lowest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.Max">
            <summary>Highest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.Error">
            <summary>This parameter is optional.
                            Gives information on the error.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.ReverseSort">
            <summary>If set to true, it inverts the sort criteria in the field.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.IsAutoFormat">
            <summary>This parameter is set to true if qNumFormat is set to U (unknown). The engine guesses the type of the field based on the field's expression.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.AttrExprInfo">
            <summary>List of attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.AttrDimInfo">
            <summary>List of attribute dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeasureInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxMeta">
            <summary>Layout for NxMetaDef.</summary>
        </member>
        <member name="P:Qlik.Engine.INxMeta.Name">
            <summary>Name.
                            This property is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.INxMetaDef">
            <summary>Used to collect meta data.</summary>
        </member>
        <member name="T:Qlik.Engine.INxMultiRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxMultiRangeSelectInfo.Ranges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxMultiRangeSelectInfo.ColumnsToSelect">
            <summary>Number of the columns to select.
                            Numbering starts from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.INxNotification">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxNotification.ObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxNotification.QixType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxNotification.Buf">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxNotification.Meta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxNotification.Actions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPage.Left">
            <summary>Position from the left.
                            Corresponds to the first column.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPage.Top">
            <summary>Position from the top.
                            Corresponds to the first row.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPage.Width">
            <summary>Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="P:Qlik.Engine.INxPage.Height">
            <summary>Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="T:Qlik.Engine.INxPageTreeLevel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPageTreeLevel.Left">
            <summary>The first dimension that is to be part of the tree, counted from the left. For example, if qLeft is equal to 1, omit nodes from the first dimension in the current sort order.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPageTreeLevel.Depth">
            <summary>Number of dimensions to include in the tree.</summary>
        </member>
        <member name="T:Qlik.Engine.INxPageTreeNode">
            <summary>Defines an area of the tree to be fetched.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPageTreeNode.Area">
            <summary>The area of the tree to be fetched. If no area is defined on a dimension, all existing nodes are included.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPageTreeNode.AllValues">
            <summary>When set to true, generated nodes (based on current selection) will be inserted into the returned tree even when there is no actual value. For example, suppose you are looking for hybrid car sales at all car dealerships. Normally, only dealerships where hybrid cars are sold would be part of the returned tree but with qAllValues set to true, all available dealerships will be included regardless if they sold any hybrid cars or not.</summary>
        </member>
        <member name="T:Qlik.Engine.INxPatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPatch.Op">
            <summary>Operation to perform.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPatch.Path">
            <summary>Path to the property to add, remove or replace.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPatch.Value">
            <summary>This parameter is not used in a remove operation.
                            Corresponds to the value of the property to add or to the new value of the property to update.
                            Examples:
                            "false", "2", "\"New title\""</summary>
        </member>
        <member name="T:Qlik.Engine.INxPivotDimensionCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.Text">
            <summary>Some text</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.ElemNo">
            <summary>Rank number of the value
                            If set to -1, it means that the value is not an element number.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.Value">
            <summary>Value of the cell
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.CanExpand">
            <summary>If set to true, it means that the cell can be expanded.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.CanCollapse">
            <summary>If set to true, it means that the cell can be collapsed.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.Type">
            <summary>Type of the cell</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.Up">
            <summary>Number of elements that are part of the previous tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.Down">
            <summary>Number of elements that are part of the next tail.
                            This number depends on the paging, more particularly it depends on the values defined in qTop and qHeight.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.SubNodes">
            <summary>Information about sub nodes (or sub cells)
                            The array is empty [ ] when there is no sub nodes.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.AttrExps">
            <summary>Information about attribute expressions.
                            The array is empty [ ] when there is no attribute expressions.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotDimensionCell.AttrDims">
            <summary>Information about attribute dimensions.</summary>
        </member>
        <member name="T:Qlik.Engine.INxPivotPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPivotPage.Left">
            <summary>Information about the left dimension values of a pivot table.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotPage.Top">
            <summary>Information about the top dimension values of a pivot table. If there is no top dimension in the pivot table, information about the measures are given.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotPage.Data">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="T:Qlik.Engine.INxPivotValuePoint">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.Label">
            <summary>Label of the cell.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.Text">
            <summary>Some text related to the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.Num">
            <summary>Value of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.AttrExps">
            <summary>Attribute expressions values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxPivotValuePoint.AttrDims">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQvfBundledItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQvfBundledItem.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQvfBundledItem.Blob">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxRange.From">
            <summary>Position in the expression of the first character of the field name.</summary>
        </member>
        <member name="P:Qlik.Engine.INxRange.Count">
            <summary>Number of characters in the field name.</summary>
        </member>
        <member name="T:Qlik.Engine.INxRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxRangeSelectInfo.Range">
            <summary>Range of values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxRangeSelectInfo.MeasureIx">
            <summary>Number of the measure to select.
                            Numbering starts from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.INxSelectionCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxSelectionCell.Type">
            <summary>Type of cells to select</summary>
        </member>
        <member name="P:Qlik.Engine.INxSelectionCell.Col">
            <summary>Column index to select
                            Indexing starts from 0.
                            If the cell's type is:
                             
                                D, the index is based on the data matrix.
                                T, the index is based on the data matrix
                                L, the index is based on the left dimensions indexes</summary>
        </member>
        <member name="P:Qlik.Engine.INxSelectionCell.Row">
            <summary>Row index to select
                            Indexing starts from 0.
                            If the cell's type is:
                             
                                D, the index is based on the data matrix.
                                T, the index is based on the top dimensions indexes
                                L, the index is based on the data matrix</summary>
        </member>
        <member name="T:Qlik.Engine.INxSelectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxSelectionInfo.InSelections">
            <summary>Is set to true if the visualization is in selection mode.
                            For more information about the selection mode, see BeginSelections method.</summary>
        </member>
        <member name="P:Qlik.Engine.INxSelectionInfo.MadeSelections">
            <summary>Is set to true if the visualization is in selection mode and if some selections have been made while in selection mode.
                            For more information about the selection mode, see BeginSelections method.</summary>
        </member>
        <member name="T:Qlik.Engine.INxServiceConfiguration">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxServiceConfiguration.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxServiceConfiguration.Url">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxSimpleDimValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxSimpleDimValue.Text">
            <summary>Text related to the attribute expression value.
                            This property is optional. No text is returned if the attribute expression value is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.INxSimpleDimValue.ElemNo">
            <summary>Element number.</summary>
        </member>
        <member name="T:Qlik.Engine.INxSimpleValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxSimpleValue.Text">
            <summary>Text related to the attribute expression value.
                            This property is optional. No text is returned if the attribute expression value is a numeric.</summary>
        </member>
        <member name="P:Qlik.Engine.INxSimpleValue.Num">
            <summary>Numeric value of the attribute expression.
                            This property is set to NaN (Not a Number) if the attribute expression value is not a numeric.
                            Numerical values are not returned as text.</summary>
        </member>
        <member name="T:Qlik.Engine.INxStackedPivotCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.ElemNo">
            <summary>Rank number of the value.
                            If set to -1, it means that the value is not an element number.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Value">
            <summary>Value of the cell.
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.CanExpand">
            <summary>If set to true, it means that the cell can be expanded.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.CanCollapse">
            <summary>If set to true, it means that the cell can be collapsed.
                            This parameter is not returned if it is set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.MaxPos">
            <summary>Total of the positive values in the current group of cells.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.MinNeg">
            <summary>Total of the negative values in the current group of cells.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Up">
            <summary>Number of elements that are part of the previous tail.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Down">
            <summary>Number of elements that are part of the next tail.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.Row">
            <summary>Row index in the data matrix.
                            The indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.SubNodes">
            <summary>Information about sub nodes (or sub cells).
                            The array is empty [ ] when there are no sub nodes.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.AttrExps">
            <summary>Attribute expressions values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackedPivotCell.AttrDims">
            <summary>Attribute dimensions values.</summary>
        </member>
        <member name="T:Qlik.Engine.INxStackPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxStackPage.Data">
            <summary>Array of data.</summary>
        </member>
        <member name="P:Qlik.Engine.INxStackPage.Area">
            <summary>Size and offset of the data in the matrix.</summary>
        </member>
        <member name="T:Qlik.Engine.INxStateCounts">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Locked">
            <summary>Number of values in locked state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Selected">
            <summary>Number of values in selected state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Option">
            <summary>Number of values in optional state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Deselected">
            <summary>Number of values in deselected state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Alternative">
            <summary>Number of values in alternative state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.Excluded">
            <summary>Number of values in excluded state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.SelectedExcluded">
            <summary>Number of values in selected excluded state</summary>
        </member>
        <member name="P:Qlik.Engine.INxStateCounts.LockedExcluded">
            <summary>Number of values in locked excluded state</summary>
        </member>
        <member name="T:Qlik.Engine.INxSystemProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxSystemProperties.PathSeparator">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxTickCell">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTickCell.Text">
            <summary>Tick's label.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTickCell.Start">
            <summary>Start value.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTickCell.End">
            <summary>End value.</summary>
        </member>
        <member name="T:Qlik.Engine.INxTreeDataOption">
            <summary>Specifies all the paging filters needed to define the tree to be fetched.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeDataOption.MaxNbrOfNodes">
            <summary>Maximum number of nodes in the tree.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeDataOption.TreeNodes">
            <summary>Defines areas of the tree to be fetched. Areas must be defined left to right.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeDataOption.TreeLevels">
            <summary>Filters out complete dimensions from the fetched tree.</summary>
        </member>
        <member name="T:Qlik.Engine.INxTreeDimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.LibraryId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.ValueExprs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.NullSuppression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.OtherTotalSpec">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.ShowAll">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.OtherLabel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.TotalLabel">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.AttributeExpressions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionDef.AttributeDimensions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxTreeDimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.FallbackTitle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.ApprMaxGlyphCount">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Cardinal">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Locked">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.SortIndicator">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.GroupFallbackTitles">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.GroupPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.StateCounts">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Tags">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Error">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.DimensionType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.ReverseSort">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Grouping">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.IsSemantic">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.NumFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.IsAutoFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.GroupFieldDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Min">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Max">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.ContinuousAxes">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.IsCyclic">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.DerivedField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.MeasureInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.AttrExprInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.AttrDimInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.IsCalculated">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.IsOneAndOnlyOne">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeDimensionInfo.Cardinalities">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxTreeMultiRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeMultiRangeSelectInfo.Ranges">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxTreeNode">
            <summary>Represents a dimension in the tree.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.ElemNo">
            <summary>Element number</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.NodeNr">
            <summary>A generated number applicable to this page only. Used so that children can easily identify who their parents are.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.ParentNode">
            <summary>The qNodeNr of this node's parent for the current page.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.Row">
            <summary>Row index in the data matrix.
                            The indexing starts from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.Type">
            <summary>Type of the cell.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.Values">
            <summary>The measures for this node.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.Nodes">
            <summary>The children of this node in the tree structure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeNode.AttrDims">
            <summary>Attribute dimension values.</summary>
        </member>
        <member name="T:Qlik.Engine.INxTreeRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeRangeSelectInfo.Range">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeRangeSelectInfo.MeasureIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxTreeRangeSelectInfo.DimensionIx">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxTreeValue">
            <summary>Represents a measure.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeValue.Text">
            <summary>Some text.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeValue.Value">
            <summary>Value of the cell.
                            Is set to NaN, if the value is not a number.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeValue.AttrExps">
            <summary>Attribute expression values.</summary>
        </member>
        <member name="P:Qlik.Engine.INxTreeValue.AttrDims">
            <summary>Attribute dimension values.</summary>
        </member>
        <member name="T:Qlik.Engine.INxValidationError">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxValidationError.ErrorCode">
            <summary>Error code.
                            This parameter is always displayed in case of error.</summary>
        </member>
        <member name="P:Qlik.Engine.INxValidationError.Context">
            <summary>Context related to the error, from the user app domain.
                            It can be the identifier of an object, a field name, a table name.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxValidationError.ExtendedMessage">
            <summary>Internal information from the server.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.INxVariableListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Description">
            <summary>Description of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Definition">
            <summary>Definition of the variable. It can be a value or an expression.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.IsConfig">
            <summary>If set to true, it means that the variable is a system variable.
                             A system variable provides information about the system and is set by the engine. The content cannot be changed by the user.
                            This parameter is optional.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.IsReserved">
            <summary>If set to true, it means that the variable is reserved.
                            This parameter is optional.
                            The default value is false.
                            Examples:
                            • ScriptError is a reserved variable, set by the engine.
                            • DayNames is a reserved variable, set by the user.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Meta">
            <summary>Information about publishing and permissions.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Info">
            <summary>Identifier and type of the object.
                            This parameter is mandatory.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.Data">
            <summary>Data.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableListItem.IsScriptCreated">
            <summary>If set to true, it means that the variable was defined via script.</summary>
        </member>
        <member name="T:Qlik.Engine.INxVariableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxVariableProperties.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableProperties.NumberPresentation">
            <summary>Defines the format of the value of a variable.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableProperties.IncludeInBookmark">
            <summary>Set this property to true to update the variable when applying a bookmark.
                            The value of a variable can affect the state of the selections.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableProperties.UsePredefListedValues">
            <summary>The value of a variable can be an enumeration.
                            Set this property to true to reflect the predefined values in an enumeration.</summary>
        </member>
        <member name="P:Qlik.Engine.INxVariableProperties.PreDefinedList">
            <summary>List of enumerations.
                            This property is used if qUsePredefListedValues is set to true.</summary>
        </member>
        <member name="T:Qlik.Engine.INxViewPort">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxViewPort.Width">
            <summary>Width of the canvas in pixels.</summary>
        </member>
        <member name="P:Qlik.Engine.INxViewPort.Height">
            <summary>Height of the canvas in pixels.</summary>
        </member>
        <member name="P:Qlik.Engine.INxViewPort.ZoomLevel">
            <summary>Zoom level.</summary>
        </member>
        <member name="T:Qlik.Engine.IObjectInterface">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IObjectInterface.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IObjectInterface.Handle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IObjectInterface.GenericType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IObjectInterface.GenericId">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IPersistedObjectMeta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.Format">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.ParentId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.SharedStatus">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.DstPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.RelativeDstPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPersistedObjectMeta.SecurityMetaAsBase64">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISearchableObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchableObject.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchableObject.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchableObject.SearchableProperties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchableObject.SearchableDimensions">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISearchAttribute">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchAttribute.Key">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchAttribute.Value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISearchObjectInternalOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchObjectInternalOptions.ExcludedTypes">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISelectionObject">
            <summary>Indicates which selections are currently applied. It gives the current selections. Is the layout for SelectionObjectDef.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectionObject.BackCount">
            <summary>Number of steps back</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectionObject.ForwardCount">
            <summary>Number of steps forward</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectionObject.Selections">
            <summary>Lists the fields that are selected</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectionObject.StateName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISelectionObjectDef">
            <summary>To display the current selections.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectionObjectDef.StateName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IStaticContentList">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStaticContentList.Items">
            <summary>Information about the list of content files.</summary>
        </member>
        <member name="T:Qlik.Engine.IStaticContentListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStaticContentListItem.UrlDef">
            <summary>Relative path to the content file. The URL is static.
                            In Qlik Sense Enterprise, content files located:
                            • in the /content/&lt;content library name&gt;/ folder are part of a global content library.
                            • in the /appcontent/ folder are part of the app specific library.
                            The content files are never embedded in the qvf file.
                            In Qlik Sense Desktop, content files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="P:Qlik.Engine.IStaticContentListItem.Url">
            <summary>Relative path to the content file. The URL is static.
                            In Qlik Sense Enterprise, content files located:
                            • in the /content/&lt;content library name&gt;/ folder are part of a global content library.
                            • in the /appcontent/ folder are part of the app specific library.
                            The content files are never embedded in the qvf file.
                            In Qlik Sense Desktop, content files located:
                            • in the /content/default/ folder are outside the qvf file.
                            • in the /media/ folder are embedded in the qvf file.</summary>
        </member>
        <member name="T:Qlik.Engine.IStaticContentUrl">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStaticContentUrl.Url">
            <summary>Relative path of the thumbnail.</summary>
        </member>
        <member name="T:Qlik.Engine.IStaticContentUrlDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStaticContentUrlDef.Url">
            <summary>Relative path of the thumbnail.</summary>
        </member>
        <member name="T:Qlik.Engine.IStringExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStringExpression.Expr">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IThen">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ITreeData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.StateName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.NodesOnDim">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.Error">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.DimensionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.EffectiveInterColumnSortOrder">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.HasOtherValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.LastExpandedPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.CalcCondMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeData.TreeDataPages">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ITreeDataDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.StateName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.Dimensions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.InterColumnSortOrder">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.SuppressZero">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.SuppressMissing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.OpenFullyExpanded">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.PopulateMissing">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.CalcCondition">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.Title">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITreeDataDef.InitialDataFetch">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IUndoExclude">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IUndoInfo">
            <summary>Displays information about the number of possible undos and redos. Is the layout for UndoInfoDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IUndoInfo.UndoCount">
            <summary>Number of possible undos</summary>
        </member>
        <member name="P:Qlik.Engine.IUndoInfo.RedoCount">
            <summary>Number of possible redos</summary>
        </member>
        <member name="T:Qlik.Engine.IUndoInfoDef">
            <summary>Defines if an object should contain information on the number of possible undo and redo.</summary>
        </member>
        <member name="T:Qlik.Engine.IValueExpression">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IValueExpression.Expr">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IVariableList">
            <summary>Lists the variables in an app. Is the layout for VariableListDef.</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableList.Items">
            <summary>List of the variables.</summary>
        </member>
        <member name="T:Qlik.Engine.IVariableListDef">
            <summary>Defines the list of variables in an app.</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableListDef.Type">
            <summary>Type of the list.</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableListDef.ShowReserved">
            <summary>Shows the reserved variables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableListDef.ShowConfig">
            <summary>Shows the system variables if set to true.</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableListDef.Data">
            <summary>Data</summary>
        </member>
        <member name="P:Qlik.Engine.IVariableListDef.ShowSession">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IArrayOfNxValuePoint">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxCellRows">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISearchAttributeArray">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericBookmark">
            <summary>This class describes all the methods that apply at bookmark level.</summary>
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetFieldValues(System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetFieldValuesAsync(System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetFieldValuesAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetFieldValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,Qlik.Engine.BookmarkFieldPage)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="field" /><param name="getExcludedValues" /><param name="dataPage" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties.</para>
          <para> If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.SetProperties(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.SetPropertiesAsync(Qlik.Engine.GenericBookmarkProperties)">
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericBookmarkProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a bookmark.</para>
        </summary><param name="prop">Information about the bookmark
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetInfo">
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetInfoAsync">
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns:</para>
          <para>* the type of the object</para>
          <para>* the identifier of the object</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.Apply">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyAsync">
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApplyAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Applies a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.Publish">
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.PublishAsync">
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnPublish">
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnPublishAsync">
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a bookmark.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericBookmark.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.Bookmark">
            <summary>Reference to property Layout.Bookmark</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericBookmark.FieldInfos">
            <summary>Reference to property Layout.FieldInfos</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedDefinition">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericDerivedFields">
            <summary />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.SetProperties(Qlik.Engine.GenericDerivedFieldsProperties)">
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.SetPropertiesAsync(Qlik.Engine.GenericDerivedFieldsProperties)">
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDerivedFieldsProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="prop" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetProperties">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetPropertiesAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetInfo">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetInfoAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldData">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldDataAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldDataAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedField(System.String)">
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldAsync(System.String)">
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><param name="id" /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetListData">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetListDataAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetListDataAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetListDataAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFields">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldsAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedFieldsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedGroups">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedGroupsAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedGroupsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDerivedFields.GetDerivedGroupsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary /><returns />
        </member>
        <member name="T:Qlik.Engine.IGenericDimension">
            <summary>This class describes all the methods that apply at dimension level.</summary>
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLayout">
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLayoutAsync">
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates a dimension and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para> </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.SetProperties(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.SetPropertiesAsync(Qlik.Engine.GenericDimensionProperties)">
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericDimensionProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a dimension.</para>
        </summary><param name="prop">Information about the dimension.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the dimension.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetGenericDimension">
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetGenericDimensionAsync">
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetGenericDimensionAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetGenericDimensionAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the definition of a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.Publish">
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.PublishAsync">
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnPublish">
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnPublishAsync">
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a dimension.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericDimension.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.Dim">
            <summary>Reference to property Layout.Dim</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericDimension.DimInfos">
            <summary>Reference to property Layout.DimInfos</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericMeasure">
            <summary>This class describes all the methods that apply at measure level.</summary>
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLayout">
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLayoutAsync">
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates a measure and displays its properties, including the dynamic properties. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of an object. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.SetProperties(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.SetPropertiesAsync(Qlik.Engine.GenericMeasureProperties)">
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericMeasureProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a measure.</para>
        </summary><param name="prop">Information about the measure.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>Returns the identifier and the definition of the measure.</para>
          <para>If the member delta is set to true in the request object, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetGenericMeasure">
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetGenericMeasureAsync">
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetGenericMeasureAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetGenericMeasureAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the definition of a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLinkedObjects">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLinkedObjectsAsync">
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLinkedObjectsAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.GetLinkedObjectsAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Lists the linked objects to a generic object, a dimension or a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.Publish">
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.PublishAsync">
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.PublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Publishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnPublish">
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnPublishAsync">
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnPublishAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unpublishes a measure.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.Approve">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.ApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.ApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnApprove">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnApproveAsync">
            <summary /><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericMeasure.UnApproveAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary /><returns />
        </member>
        <member name="P:Qlik.Engine.IGenericMeasure.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericMeasure.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericMeasure.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasure.Measure">
            <summary>Reference to property Layout.Measure</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericMeasure.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="T:Qlik.Engine.IGenericVariable">
            <summary>This class describes all the methods that apply at generic variable level.</summary>
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetLayout">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetLayoutAsync">
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetLayoutAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Evaluates an object and displays its properties including the dynamic properties. </para>
          <para>If the member delta is set to true in the request object, only the delta is evaluated.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.ApplyPatches(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.ApplyPatchesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.ApplyPatchesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.NxPatch})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Applies a patch to the properties of a variable. Allows an update to some of the properties.</para>
          <para>Applying a patch takes less time than resetting all the properties.</para>
        </summary><param name="patches">Array of patches.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetProperties(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetPropertiesAsync(Qlik.Engine.GenericVariableProperties)">
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.GenericVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties for a variable.</para>
          <para>The identifier of a variable cannot be modified.</para>
          <para>You cannot update the properties of a script-defined variable using the SetProperties method.</para>
        </summary><param name="prop">Information about the variable.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetProperties">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetPropertiesAsync">
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Shows the properties of an object. </para>
          <para>If the member delta is set to true in the request, only the delta is retrieved.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetInfo">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetInfoAsync">
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetInfoAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.GetInfoAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the type and identifier of the object.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetStringValue(System.String)">
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetStringValueAsync(System.String)">
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetStringValueAsync(Qlik.Engine.AsyncHandle,System.String)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a string value to a variable. </para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable. The string can contain an expression.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetNumValue(System.Double)">
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetNumValueAsync(System.Double)">
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetNumValueAsync(Qlik.Engine.AsyncHandle,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a numerical value to a variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="val">Value of the variable.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetDualValue(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetDualValueAsync(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IGenericVariable.SetDualValueAsync(Qlik.Engine.AsyncHandle,System.String,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the value of a dual variable.</para>
          <para>These changes are not persistent. They only last the duration of the engine session.</para>
        </summary><param name="text">String representation of a dual value.
 
Set this parameter to "", if the string representation is to be Null.
 
This parameter is mandatory.</param><param name="num">Numeric representation of a dual value.
 
This parameter is mandatory.</param><returns />
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Properties">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Layout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Info">
            <summary>Reference to property Layout.Info</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Meta">
            <summary>Reference to property Layout.Meta</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Text">
            <summary>Reference to property Layout.Text</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.Num">
            <summary>Reference to property Layout.Num</summary>
        </member>
        <member name="P:Qlik.Engine.IGenericVariable.IsScriptCreated">
            <summary>Reference to property Layout.IsScriptCreated</summary>
        </member>
        <member name="T:Qlik.Engine.IField">
            <summary>This class describes all the methods that apply at field level.</summary>
        </member>
        <member name="M:Qlik.Engine.IField.GetCardinal">
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetCardinalAsync">
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetCardinalAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetCardinalAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Retrieves the number of distinct values in a field. </para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetAndMode">
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetAndModeAsync">
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetAndModeAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetAndModeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the AND mode status of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectValues(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectValuesAsync(System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectValuesAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectValuesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{Qlik.Engine.FieldValue},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in a field, by entering the values to select.</para>
        </summary><param name="fieldValues">List of the values to select.</param><param name="toggleMode">The default value is false.
                            This parameter is optional.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.Select(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAsync(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ToggleSelect(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ToggleSelectAsync(System.String,System.Boolean,System.Int32)">
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ToggleSelectAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ToggleSelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean,System.Int32)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Toggle selects field values matching a search string.</para>
        </summary><param name="match">String to search for.
                            Can contain wild cards or numeric search criteria.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><param name="excludedValuesMode">Include excluded values in search.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAllButThis(System.Boolean)">
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAllButThisAsync(System.Boolean)">
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAllButThisAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAllButThisAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Maintains the selections in the current field while clearing the selections in the other fields.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectPossible(System.Boolean)">
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectPossibleAsync(System.Boolean)">
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectPossibleAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectPossibleAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all possible values in a specific field.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectExcluded(System.Boolean)">
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectExcludedAsync(System.Boolean)">
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectExcludedAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectExcludedAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Inverts the current selections.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAll(System.Boolean)">
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAllAsync(System.Boolean)">
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAllAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAllAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all values of a field. Excluded values are also selected.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.Lock">
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LockAsync">
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LockAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LockAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Locks all selected values of a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.Unlock">
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.UnlockAsync">
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.UnlockAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.UnlockAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Unlocks all selected values of a specific field if the target (or handle ) is a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetNxProperties">
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetNxPropertiesAsync">
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetNxPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.GetNxPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of a field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetNxProperties(Qlik.Engine.NxFieldProperties)">
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetNxPropertiesAsync(Qlik.Engine.NxFieldProperties)">
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetNxPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxFieldProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties to a field.</para>
        </summary><param name="properties">Information about the properties of the field</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetAndMode(System.Boolean)">
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetAndModeAsync(System.Boolean)">
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SetAndModeAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a field in the AND mode.</para>
        </summary><param name="andMode">Specifies if the AND mode applies to the field.
                            Set this parameter to true to enter the AND mode.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAlternative(System.Boolean)">
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAlternativeAsync(System.Boolean)">
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAlternativeAsync(Qlik.Engine.AsyncHandle,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.SelectAlternativeAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects all alternatives values in a specific field.</para>
          <para>In a field that contains at least one selected value, the values that are neither selected nor excluded are alternatives values.</para>
        </summary><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LowLevelSelect(System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LowLevelSelectAsync(System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LowLevelSelectAsync(Qlik.Engine.AsyncHandle,System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.LowLevelSelectAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.Collections.Generic.IEnumerable{System.Int32},System.Boolean,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Selects some values in a field, by entering the element numbers related to the values to select.</para>
        </summary><param name="values">Indexes (or element numbers) of the values to select.</param><param name="toggleMode">Set to true to keep any selections present in the list object.
                            If this parameter is set to false, selections made before accepting the list object search become alternative.
                            This parameter is mandatory.</param><param name="softLock">Set to true to ignore locks; in that case, locked fields can be selected.
                            The default value is false.
                            This parameter is optional.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IField.Clear">
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAsync">
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IField.ClearAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Clears the selections in a specific field.</para>
        </summary><returns />
        </member>
        <member name="T:Qlik.Engine.IVariable">
            <summary>This class describes all the methods that apply at variable level.</summary>
        </member>
        <member name="M:Qlik.Engine.IVariable.GetContent">
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetContentAsync">
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetContentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the calculated value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetRawContent">
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetRawContentAsync">
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetRawContentAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetRawContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Returns the raw value of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetContent(System.String,System.Boolean)">
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetContentAsync(System.String,System.Boolean)">
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetContentAsync(Qlik.Engine.AsyncHandle,System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetContentAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0},System.String,System.Boolean)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Sets a value to a variable.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
        </summary><param name="content">Value of the variable.
                            This parameter is mandatory.</param><param name="updateMRU">If set to true, the value is added to the Most Recently Used (MRU) list.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.ForceContent(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.ForceContentAsync(System.String,System.Double)">
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.ForceContentAsync(Qlik.Engine.AsyncHandle,System.String,System.Double)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets the value of a dual variable overriding any input constraints.</para>
          <para>This method is deprecated (not recommended to use). Use SetProperties method instead.</para>
          <para>The ForceContent method does not evaluate any expression.</para>
        </summary><param name="s">String representation of a dual value.
                            Set this parameter to "", if the string representation is to be Null.
                            This parameter is mandatory.</param><param name="d">Numeric representation of a dual value.
                            This parameter is mandatory.</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetNxProperties">
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetNxPropertiesAsync">
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetNxPropertiesAsync(Qlik.Engine.AsyncHandle)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.GetNxPropertiesAsync``1(Qlik.Engine.AsyncHandle,System.Func{Qlik.Engine.Communication.IO.Response,``0})">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <param name="onResult">Continuation function</param>
            <summary>
          <para>Gets the properties of a variable.</para>
          <para>This method is deprecated (not recommended to use). Use GetProperties method instead.</para>
        </summary><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetNxProperties(Qlik.Engine.NxVariableProperties)">
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetNxPropertiesAsync(Qlik.Engine.NxVariableProperties)">
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="M:Qlik.Engine.IVariable.SetNxPropertiesAsync(Qlik.Engine.AsyncHandle,Qlik.Engine.NxVariableProperties)">
            <param name="asyncHandle">Handle to asynchronous method request</param>
            <summary>
          <para>Sets some properties to a variable.</para>
        </summary><param name="properties">Information about the properties of the variable</param><returns />
        </member>
        <member name="T:Qlik.Engine.ISearchAssociationResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchAssociationResult.FieldNames">
            <summary>List of the fields that contains search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchAssociationResult.SearchTerms">
            <summary>List of the search terms.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchAssociationResult.FieldDictionaries">
            <summary>Information about the fields containing search hits.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchAssociationResult.SearchTermsMatched">
            <summary>List of search results.
                            The maximum number of search results in this list is set by qPage/qCount.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchAssociationResult.TotalSearchResults">
            <summary>Total number of search results.
                            This number is not limited by qPage/qCount.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchCharRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchCharRange.CharPos">
            <summary>Starting position of the match in the search result, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchCharRange.CharCount">
            <summary>Length of the match in the search result.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchCharRange.Term">
            <summary>Position of the term in the list of search terms, starting from 0.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchCombinationOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchCombinationOptions.SearchFields">
            <summary>List of the search fields.
                            If empty, the search is performed in all fields of the app.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchCombinationOptions.Context">
            <summary>Search context.
                            The default value is LockedFieldsOnly.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchCombinationOptions.CharEncoding">
            <summary>Encoding used to compute qRanges of type SearchCharRange.
                            Only affects the computation of the ranges. It does not impact the encoding of the text.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchCombinationOptions.Attributes">
            <summary>Optional.
                             
                                For SearchSuggest method, this array is empty.
                                For SearchResults method, this array is empty, or contains qNum and/or qElemNum. It allows the user to request details in the outputted SearchGroupItemMatch. For more information, see SearchGroupItemMatch</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchFieldDictionary">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchFieldDictionary.Field">
            <summary>Position of the field in the list of fields, starting from 0.
                            The list of fields is defined in qResults/qFieldNames and contains the search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchFieldDictionary.Result">
            <summary>List of the matching values.
                            The maximum number of values in this list is set by qMaxNbrFieldMatches.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchFieldMatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchFieldMatch.Field">
            <summary>Position of the field in the list of fields, starting from 0.
                            The list of fields is defined in qResults/qFieldNames and contains the search associations.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchFieldMatch.Values">
            <summary>Positions of the matching values in the search results.
                            The maximum number of values in this list is defined by qMaxNbrFieldMatches.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchFieldMatch.Terms">
            <summary>Positions of the search terms, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchFieldMatch.NoOfMatches">
            <summary>Number of search hits in the field.
                            The number of values in qValues and the value of qNoOfMatches are equal if qMaxNbrFieldMatches is -1.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchGroup">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroup.Id">
            <summary>Identifier of the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroup.GroupType">
            <summary>Type of the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroup.SearchTermsMatched">
            <summary>Indexes of the search terms that are included in the group. These search terms are related to the list of terms defined in SearchResult.qSearchTerms.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroup.TotalNumberOfItems">
            <summary>Total number of distinct items in the search group.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroup.Items">
            <summary>List of items in the search group.
                            The group items are numbered from the value of SearchGroupOptions.qOffset to the value of SearchGroupOptions.qOffset + SearchGroupOptions.qCount</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchGroupItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItem.ItemType">
            <summary>Type of the group item.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItem.TotalNumberOfMatches">
            <summary>Total number of distinct matches in the search group item.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItem.Identifier">
            <summary>Identifier of the item.
                            It corresponds to:
                             
                                The name of the field, if the type of the search group is data set.
                                The id of the generic object if the type of the search group is generic object.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItem.ItemMatches">
            <summary>List of matches in the search group item.
                            The group item matches are numbered from the value of SearchGroupItemOptions.qOffset to the value of SearchGroupItemOptions.qOffset + SearchGroupItemOptions.qCount.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItem.SearchTermsMatched">
            <summary>Indexes of the search terms that are included in the group item. These search terms are related to the list of terms defined in SearchResult.qSearchTerms.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchGroupItemMatch">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemMatch.Text">
            <summary>Search match value.
                            Value of the search group item.
                            If the match is found in a field, it corresponds to the value of the field.
                            If the match is found in a generic object property, it corresponds to the property value.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemMatch.FieldSelectionMode">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemMatch.Ranges">
            <summary>List of ranges.
                            For example, if the search terms are Price and Make, and the search group item value is Make by Price vs Mileage, then there are two ranges: one for Price and one for Make.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemMatch.Attributes">
            <summary>Provides detail of the match as requested by the user in SearchObjectsOptions.qAttributes or SearchCombinationOptions.qAttributes
                            If the user requests SearchObjects or SearchResults with an empty qAttributes option, the outputted qAttributes is returned empty.
                            For SearchObjects requested with qProperty, the SearchGroupItemMatch.qAttributes return value contains [“qProperty”, "qMetaDef/title”] if the match has been found in the title of the item. For dimension values, the returned qProperty will be “*”.
                            For SearchResults requested with qNum, the SearchGroupItemMatch.qAttributes return value contains ["qNum", N] where N is the numeric value of the element or NaN if the value is not numeric.
                            For SearchResults requested with qElemNum, the SearchGroupItemMatch.qAttributes return value contains ["qElemNum", N] where N is the value index of the element.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchGroupItemOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemOptions.GroupItemType">
            <summary>Type of the group item. Can be
                             
                                GenericObject: the type of the search group item is a generic object. Group items have this type when you are calling SearchObjects.
                                Field: the type of the search group item is a field. Group items have this type when you are calling SearchResults.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemOptions.Offset">
            <summary>Position starting from 0.
                            The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupItemOptions.Count">
            <summary>Maximum number of matches per item (in qItemMatches[ ]).
                            The default value is -1: all values are returned.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchGroupOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchGroupOptions.GroupType">
            <summary>Type of the group. Can be:
                             
                                GenericObjectType: the type of the search group item is a generic object. Groups have this type when you are calling SearchObjects.
                                DatasetType: type of the search group item is a dataset association. Groups have this type when you are calling SearchResults.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupOptions.Offset">
            <summary>Position starting from 0.
                            The default value is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchGroupOptions.Count">
            <summary>Maximum number of items per group (in qItems[ ]).
                            The default value is -1; all values are returned.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchMatchCombination">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchMatchCombination.Id">
            <summary>Index of the search result, starting from 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchMatchCombination.FieldMatches">
            <summary>Information about the search matches.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchObjectOptions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchObjectOptions.Attributes">
            <summary>This array is either empty or contains qProperty.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchObjectOptions.CharEncoding">
            <summary>Encoding used to compute qRanges of type SearchCharRange.
                            Only affects the computation of the ranges. It does not impact the encoding of the text.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchPage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchPage.Offset">
            <summary>Position from the top, starting from 0.
                             
 
If the offset is set to 0, the first search result to be returned is at position 0.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchPage.Count">
            <summary>Number of search groups to return (in qSearchGroupArray).</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchPage.MaxNbrFieldMatches">
            <summary>Maximum number of matching values to return per search result.
                            The default value is -1; all values are returned.
                            This property is to be used with the SearchAssociations method.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchPage.GroupOptions">
            <summary>Options of the search groups.
                            If this property is not set, all values are returned.
                            This property is to be used with the SearchResults method or the SearchObjects method.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchPage.GroupItemOptions">
            <summary>Options of the search group items.
                            If this property is not set, all values are returned.
                            This property is to be used with the SearchResults method or the SearchObjects method.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchResult.SearchTerms">
            <summary>List of the search terms.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchResult.TotalNumberOfGroups">
            <summary>Total number of groups.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchResult.SearchGroupArray">
            <summary>List of search groups.
                            The groups are numbered from the value of SearchPage.qOffset to the value of SearchPage.qOffset + SearchPage.qCount.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchSuggestionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchSuggestionResult.Suggestions">
            <summary>List of suggestions.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchSuggestionResult.FieldNames">
            <summary>List of field names that contain search hits.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchSuggestItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchSuggestItem.Value">
            <summary>Value of the suggestion.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchSuggestItem.Term">
            <summary>Index of the suggestion value.
                            The indexing starts from 0 and from the left.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchTermResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISearchTermResult.Text">
            <summary>Text of the associated value.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchTermResult.ElemNumber">
            <summary>Element number of the associated value.</summary>
        </member>
        <member name="P:Qlik.Engine.ISearchTermResult.Ranges">
            <summary>List of ranges.
                            For example, if the user searches the term read and the associative value is Reading, then the corresponding range would be Read in Reading.</summary>
        </member>
        <member name="T:Qlik.Engine.ISearchMatchCombinations">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IBNFDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IBNFDef.Bnf">
            <summary>Array of token references that all together build up the definition of the current token.
                            Generally, if the array is not empty, the definition is a BNF rule (qIsBnfRule is set to true). However, some BNF rules do have an empty array (qIsBnfRule is set to true, but qBnf is empty).</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.Nbr">
            <summary>Number of the current token definition.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.PNbr">
            <summary>Number of the parent rule definition.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.HelpId">
            <summary>Reference identifier to a function described in the documentation. The identifier is stored in the definition of the token containing the function name.
                            Is not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.Name">
            <summary>Token name.
                            One of:
                             
                                a rule name
                                an identifier
                                a literal value</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.Str">
            <summary>Literal string of the token.
                            Examples: 'Round' and '('.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.IsBnfRule">
            <summary>If set to true, a list of related rule tokens is assigned to qBnf .
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.ScriptStatement">
            <summary>If set to true, the definition specifies a script statement.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.ControlStatement">
            <summary>If set to true, the definition specifies a control statement.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.BnfLiteral">
            <summary>If set to true, the definition specifies a literal token.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.QvFunc">
            <summary>If set to true, the definition is related to a Qlik Sense function. It cannot be an aggregation function.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.AggrFunc">
            <summary>If set to true, the definition is related to an aggregation function.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.FG">
            <summary>Group of the function.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.FieldFlag">
            <summary>If set to true, the definition is related to a field.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.MT">
            <summary>Type of the data.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.Depr">
            <summary>Indicates whether a script statement, a chart or a script function is deprecated (not recommended for use).
                            If set to true, the script statement or the function is not recommended for use in Qlik Sense.
                            This parameter is optional. The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBNFDef.FGList">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICodePage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICodePage.Number">
            <summary>Number of the code page</summary>
        </member>
        <member name="P:Qlik.Engine.ICodePage.Name">
            <summary>Name of the code page</summary>
        </member>
        <member name="P:Qlik.Engine.ICodePage.Description">
            <summary>Description of the code page</summary>
        </member>
        <member name="T:Qlik.Engine.IConnection">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnection.Id">
            <summary>Identifier of the connection.
                            Is generated by the engine and is unique.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.Name">
            <summary>Name of the connection.
                            This parameter is mandatory and must be set when creating or modifying a connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.ConnectionString">
            <summary>One of:
                             
                                ODBC CONNECT TO [&lt;provider name&gt;]
                                OLEDB CONNECT TO [&lt;provider name&gt;]
                                CUSTOM CONNECT TO [&lt;provider name&gt;]
                                "&lt;local absolute or relative path,UNC path &gt;"
                                "&lt;URL&gt;"
                             
                            Connection string.
                            This parameter is mandatory and must be set when creating or modifying a connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.Type">
            <summary>One of:
                             
                                ODBC
                                OLEDB
                                &lt;Name of the custom connection file&gt;
                                folder
                                internet
                             
                            Type of the connection.
                            This parameter is mandatory and must be set when creating or modifying a connection.
                            For ODBC, OLEDB and custom connections, the engine checks that the connection type matches the connection string.
                            The type is not case sensitive.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.UserName">
            <summary>Name of the user who creates the connection.
                            This parameter is optional; it is only used for OLEDB, ODBC and CUSTOM connections.
                            A call to GetConnection method does not return the user name.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.Password">
            <summary>Password of the user who creates the connection.
                            This parameter is optional; it is only used for OLEDB, ODBC and CUSTOM connections.
                            A call to GetConnection method does not return the password.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.ModifiedDate">
            <summary>Is generated by the engine.
                            Creation date of the connection or last modification date of the connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.Meta">
            <summary>Information about the connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IConnection.LogOn">
            <summary>Select which user credentials to use to connect to the source.
                             
                                LOG_ON_SERVICE_USER: Disables
                                LOG_ON_CURRENT_USER: Enables</summary>
        </member>
        <member name="T:Qlik.Engine.IConnectionInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ConnectStatement">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Username">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Password">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ObsoleteType1">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ModifiedDate">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ObsoleteType2">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ObsoleteType3">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.Meta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.LogOn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IConnectionInfo.SupportFileStreaming">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICustomConnector">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICustomConnector.Provider">
            <summary>Name of the custom connector file.</summary>
        </member>
        <member name="P:Qlik.Engine.ICustomConnector.Parent">
            <summary>Name of the parent folder that contains the custom connector file.</summary>
        </member>
        <member name="P:Qlik.Engine.ICustomConnector.DisplayName">
            <summary>Name of the custom connector as displayed in the Qlik interface.</summary>
        </member>
        <member name="P:Qlik.Engine.ICustomConnector.MachineMode">
            <summary>Mode of the machine (64 or 32 bits).</summary>
        </member>
        <member name="P:Qlik.Engine.ICustomConnector.SupportFileStreaming">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IDatabase">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDatabase.Name">
            <summary>Name of the database.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabase.IsDefault">
            <summary>Is set to true if the database is set by default.</summary>
        </member>
        <member name="T:Qlik.Engine.IDatabaseInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.DBMSName">
            <summary>Name of the product accessed by the provider</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.DBUsage">
            <summary>If set to true, it means that the data source contains some databases.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.OwnerUsage">
            <summary>If set to true, it means that the data source contains some owners.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.DBSeparator">
            <summary>Character string used after the database name
                            Example with separator ".":
                            FROM LinkedTablesData.dbo.Months
                            Where:
                             
                                LinkedTablesData is the database name
                                dbo is the owner name
                                Months is the table name</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.OwnerSeparator">
            <summary>Character string used after the owner name
                            Example with separator ".":
                            FROM LinkedTablesData.dbo.Months
                            Where:
                             
                                LinkedTablesData is the database name
                                dbo is the owner name
                                Months is the table name</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.DBFirst">
            <summary>If set to true, it means that the database is displayed first, before the owners and tables.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.QuotePreffix">
            <summary>Prefix used with field, database or owner names that contain special characters or keywords.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.QuoteSuffix">
            <summary>Suffix used with field, database or owner names that contain special characters or keywords.</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.SpecialChars">
            <summary>List of the special characters</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.DefaultDatabase">
            <summary>Name of the default database</summary>
        </member>
        <member name="P:Qlik.Engine.IDatabaseInfo.Keywords">
            <summary>List of the script keywords</summary>
        </member>
        <member name="T:Qlik.Engine.IDatabaseOwner">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDatabaseOwner.Name">
            <summary>Name of the owner</summary>
        </member>
        <member name="T:Qlik.Engine.IDataField">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDataField.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IDataField.IsKey">
            <summary>Is set to true if the field is a primary key.</summary>
        </member>
        <member name="P:Qlik.Engine.IDataField.OriginalFieldName">
            <summary>Is shown for fixed records.
                            qOriginalFieldName and qName are identical if no field names are used in the file.
                            qOriginalFieldName differs from qName if embedded file names are used in the file.</summary>
        </member>
        <member name="T:Qlik.Engine.IDataRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDataRecord.Values">
            <summary>List of values inside the table.
                            The first values (in result/qPreview/0/qValues) correspond to the field names in the table.
                            The following values (from result/qPreview/1/qValues) are the values of the fields in the table.</summary>
        </member>
        <member name="T:Qlik.Engine.IDataTable">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDataTable.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.IDataTable.Type">
            <summary>Type of the table.
                            For examples: Table, View</summary>
        </member>
        <member name="T:Qlik.Engine.IDataTableEx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDataTableEx.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.IDataTableEx.Fields">
            <summary>List of the fields in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.IDataTableEx.FormatSpec">
            <summary>List of format specification items, within brackets.
                            Examples of specification items:
                             
                                 file type
                                embedded labels, no labels
                                table is &lt;table name&gt;</summary>
        </member>
        <member name="T:Qlik.Engine.IDelimiterInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDelimiterInfo.Name">
            <summary>Name of the delimiter.
                            Example:
                            "Tab_DELIMITER"</summary>
        </member>
        <member name="P:Qlik.Engine.IDelimiterInfo.ScriptCode">
            <summary>Representation of the delimiter value that is used in the script.
                            Example:
                            "'\t'"</summary>
        </member>
        <member name="P:Qlik.Engine.IDelimiterInfo.Number">
            <summary>Delimiter character number used by the engine to determine how to separate the values.</summary>
        </member>
        <member name="P:Qlik.Engine.IDelimiterInfo.IsMultiple">
            <summary>Is set to true if multiple spaces are used to separate the values.</summary>
        </member>
        <member name="T:Qlik.Engine.IDriveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDriveInfo.Drive">
            <summary>Value of the drive
                            Examples:
                             C:\\, E:\\</summary>
        </member>
        <member name="P:Qlik.Engine.IDriveInfo.Type">
            <summary>Type of the drive.
                            Fixed means physical drive.</summary>
        </member>
        <member name="P:Qlik.Engine.IDriveInfo.Name">
            <summary>Name of the drive.</summary>
        </member>
        <member name="P:Qlik.Engine.IDriveInfo.TypeIdentifier">
            <summary>Information about the drive type.</summary>
        </member>
        <member name="P:Qlik.Engine.IDriveInfo.UnnamedDrive">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IFileDataFormat">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.Type">
            <summary>Type of the file.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.Label">
            <summary>One of:
                             
                                embedded labels (field names are present in the file)
                                no labels
                                explicit labels (for DIFfiles)</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.Quote">
            <summary>One of:
                             
                                None (no quotes)
                                MSQ (Modern Style Quoting)
                                 
                                    Standard (quotes " " or ' ' can be used, but only if they are the first and last non blank characters of a field value.)
                                 
                             
                            This property is used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.Comment">
            <summary>String that marks the beginning of the comment line.
                            Example: “#” or “//”
                            The engine ignores the commented lines during the data load.
                            This property is only used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.Delimiter">
            <summary>Information about the delimiter.
                            This property is used for delimited files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.CodePage">
            <summary>Character set used in the file.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.HeaderSize">
            <summary>Size of the header.
                            Example: If the header size is 2, the first two rows in the file are considered as header and not as data. The header can contain the field names.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.RecordSize">
            <summary>Record length.
                            Each record (row of data) contains a number of columns with a fixed field size.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.TabSize">
            <summary>Number of spaces that one tab character represents in the table file.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.IgnoreEOF">
            <summary>Is set to true, the end-of-file character is not taken into account during reload.
                            This property is used for delimited files and fixed record data files.</summary>
        </member>
        <member name="P:Qlik.Engine.IFileDataFormat.FixedWidthDelimiters">
            <summary>Positions of the field breaks in the table.
                            This property is used for fixed record data files.</summary>
        </member>
        <member name="T:Qlik.Engine.IFilterInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFilterInfo.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFilterInfo.WherePredicate">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IFolderItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFolderItem.Name">
            <summary>Name of the folder item.</summary>
        </member>
        <member name="P:Qlik.Engine.IFolderItem.Type">
            <summary>Type of the folder item.</summary>
        </member>
        <member name="T:Qlik.Engine.IFunction">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFunction.Name">
            <summary>Name of the script function.</summary>
        </member>
        <member name="P:Qlik.Engine.IFunction.Group">
            <summary>Group of the script function.</summary>
        </member>
        <member name="P:Qlik.Engine.IFunction.Signature">
            <summary>Signature of the script function.
                            Gives general information about the function.</summary>
        </member>
        <member name="T:Qlik.Engine.IOdbcDsn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IOdbcDsn.Name">
            <summary>Name of the ODBC connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IOdbcDsn.Description">
            <summary>Description of the ODBC connection.</summary>
        </member>
        <member name="P:Qlik.Engine.IOdbcDsn.Bit32">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the version of ODBC is 32-bit.</summary>
        </member>
        <member name="P:Qlik.Engine.IOdbcDsn.UserOnly">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the connection is User DSN. The connection works only for a specific user.</summary>
        </member>
        <member name="T:Qlik.Engine.IOleDbProvider">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IOleDbProvider.Name">
            <summary>Name of the OLEDB provider.</summary>
        </member>
        <member name="P:Qlik.Engine.IOleDbProvider.Description">
            <summary>Description of the OLEDB provider.</summary>
        </member>
        <member name="P:Qlik.Engine.IOleDbProvider.Bit32">
            <summary>This parameter is optional. Default is false.
                            Is set to true if the version of the OLEDB provider is 32-bit.</summary>
        </member>
        <member name="T:Qlik.Engine.IScriptSyntaxError">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.ErrLen">
            <summary>Length of the word where the error is located</summary>
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.TabIx">
            <summary>Number of the faulty section</summary>
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.LineInTab">
            <summary>Line number in the section where the error is located</summary>
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.ColInLine">
            <summary>Position of the erroneous text from the beginning of the line</summary>
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.TextPos">
            <summary>Position of the erroneous text from the beginning of the script</summary>
        </member>
        <member name="P:Qlik.Engine.IScriptSyntaxError.SecondaryFailure">
            <summary>The default value is false.</summary>
        </member>
        <member name="T:Qlik.Engine.INxConnectivityManagerGetResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxConnectivityManagerGetResponse.DataConnections">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxCustomProperty">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCustomProperty.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCustomProperty.Values">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxCustomProperty.Type">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxEngineSSESetting">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.host">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.port">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.certificateFilePath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.privileges">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.reconnectTimeout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.requestTimeout">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxEngineSSESetting.fromIni">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAddedDataSegment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAddedDataSegment.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAddedDataSegment.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAddedDataSegment.MetaDataObject">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAddedObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAddedObject.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAddedObject.ItemID">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsApp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.AppID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.FilePath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.LastReloadTime">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.SavedInProductVersion">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.Owner">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.Thumbnail">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.MigrationHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.FileSize">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsApp.CustomProperties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppContainer">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppContainer.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppContainer.AppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppContainer.AppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppContainer.DataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppContainer.AppDataSegments">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppContentLibraryListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppDataSegmentOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppDataSegmentOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppDataSegmentOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppDataSegmentOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppFileMeta">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppFileMeta.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppFileMeta.StartPos">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppFileMeta.Size">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppFileMeta.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppFileMeta.Attributes">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.Attributes">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppObject.AppObjectBlobId">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsAppResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppResponse.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppResponse.AppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppResponse.AppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppResponse.DataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsAppResponse.AppDataSegments">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsBulkRequest">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.ChangedObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.ChangedAppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.ChangedDataConnections">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.ChangedAppDataSegments">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsBulkRequest.ChangedStaticContent">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsChunk">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsChunk.Offset">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsChunk.Size">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsConnection">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.Name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.ConnectStatement">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.Type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.Username">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.Password">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.LogOn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnection.CustomProperties">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsConnectionOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnectionOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnectionOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsConnectionOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsContentLibraryListItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsContentLibraryListItem.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsContentLibraryListItem.Name">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsCreateResponse">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsCreateResponse.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsCreateResponse.AddedAppObjects">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsCreateResponse.AddedAppInternals">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsCreateResponse.AddedAppDataSegments">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsDatasegment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.App">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.ID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.EngineObjectID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.Size">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.MetaDataObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsDatasegment.AppDataSegmentBlobID">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsEngineApp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsEngineApp.Id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsEngineApp.ContentHash">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsEngineApp.Meta">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsEngineService">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsEngineService.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsEngineService.settings">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsEngineSettings">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsExternalChangeInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.changeType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.EngineObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.EngineType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.QrsObjectId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.QrsObjectType">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsExternalChangeInfo.Prefix">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsMagicImportItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsMagicImportItem.BundledFile">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsMediaListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsObjectOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsObjectOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsObjectOperation.ItemID">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsObjectOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsRestEndpointHandle">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRestEndpointHandle.value">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsRule">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.id">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.category">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.type">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.name">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.rule">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.resourceFilter">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.actions">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.comment">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsRule.disabled">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsStaticContentItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsStaticContentItem.UrlPath">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsStaticContentItem.FilePath">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsStaticContentListItem">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsStaticContentOperation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsStaticContentOperation.Operation">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsStaticContentOperation.Item">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsSyncTransaction">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsSyncTransaction.TransactionObject">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxQrsSyncTransaction.WrittenChunks">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxQrsUser">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxRules">
            <summary />
        </member>
        <member name="P:Qlik.Engine.INxRules.Rules">
            <summary />
        </member>
        <member name="T:Qlik.Engine.INxStreamListEntry">
            <summary>This struct is deprecated (not recommended to use).</summary>
        </member>
        <member name="P:Qlik.Engine.INxStreamListEntry.Name">
            <summary>Name of the stream</summary>
        </member>
        <member name="P:Qlik.Engine.INxStreamListEntry.Id">
            <summary>Identifier of the stream</summary>
        </member>
        <member name="T:Qlik.Engine.IGetDerivedFieldResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDerivedFieldResult.Fields">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDerivedFieldResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetHyperCubeContinuousDataResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetHyperCubeContinuousDataResult.DataPages">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetHyperCubeContinuousDataResult.AxisData">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IExportDataResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IExportDataResult.Url">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IExportDataResult.Warnings">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateChildResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateChildResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateChildResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetTablesAndKeysResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetTablesAndKeysResult.Tr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetTablesAndKeysResult.K">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateGenericObjectResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericObjectResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericObjectResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateGenericDimensionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericDimensionResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericDimensionResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateGenericMeasureResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericMeasureResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericMeasureResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateVariableExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateVariableExResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateVariableExResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateDerivedDefinitionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateDerivedDefinitionResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateDerivedDefinitionResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateDerivedFieldsResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateDerivedFieldsResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateDerivedFieldsResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetDerivedFieldDimensionDefResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDerivedFieldDimensionDefResult.DimensionDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDerivedFieldDimensionDefResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICheckExpressionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICheckExpressionResult.ErrorMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICheckExpressionResult.BadFieldNames">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICheckExpressionResult.DangerousFieldNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICheckNumberOrExpressionResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICheckNumberOrExpressionResult.ErrorMsg">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICheckNumberOrExpressionResult.BadFieldNames">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateGenericBookmarkResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericBookmarkResult.Info">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateGenericBookmarkResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetMediaListResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetMediaListResult.List">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetMediaListResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetDatabaseTablePreviewResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDatabaseTablePreviewResult.Preview">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetDatabaseTablePreviewResult.RowCount">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetFileTableFieldsResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetFileTableFieldsResult.Fields">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetFileTableFieldsResult.FormatSpec">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetFileTablePreviewResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetFileTablePreviewResult.Preview">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetFileTablePreviewResult.FormatSpec">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetInteractResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetInteractResult.Def">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetInteractResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateAppExResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateAppExResult.DocId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateAppExResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateAppResult.Success">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateAppResult.AppId">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateSessionAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateSessionAppResult.SessionAppId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateSessionAppResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICreateSessionAppFromAppResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateSessionAppFromAppResult.SessionAppId">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICreateSessionAppFromAppResult.Return">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetBaseBNFResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetBaseBNFResult.BnfDefs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetBaseBNFResult.BnfHash">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGetBaseBNFStringResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetBaseBNFStringResult.BnfStr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IGetBaseBNFStringResult.BnfHash">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IDynamicStructure">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IStringExpressionContainer">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IValueExpressionContainer">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IGenericObjectIdentifier">
            <summary />
        </member>
        <member name="T:Qlik.Engine.EditorBreakpoint">
            <summary />
        </member>
        <member name="P:Qlik.Engine.EditorBreakpoint.bufferName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.EditorBreakpoint.lineIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.EditorBreakpoint.Enabled">
            <summary>If set to true then the breakpoint is enabled (in use).</summary>
        </member>
        <member name="T:Qlik.Engine.FieldAttributes">
            <summary>Sets the formatting of a field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.Type">
            <summary>Type of the field.
                            Default is U.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.nDec">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.UseThou">
            <summary>Defines whether or not a thousands separator must be used.
                            Default is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.Fmt">
            <summary>Defines the format pattern that applies to qText.
                             Is used in connection to the type of the field (parameter qType).
                            For more information, see Formatting mechanism.
                            Example: YYYY-MM-DD for a date</summary>
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.Dec">
            <summary>Defines the decimal separator.
                            Example: .</summary>
        </member>
        <member name="P:Qlik.Engine.FieldAttributes.Thou">
            <summary>Defines the thousand separator (if any).
                            Is used if qUseThou is set to 1.
                            Example: ,</summary>
        </member>
        <member name="T:Qlik.Engine.Size">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Size.cx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Size.cy">
            <summary />
        </member>
        <member name="T:Qlik.Engine.LocaleInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.DecimalSep">
            <summary>Decimal separator.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.ThousandSep">
            <summary>Thousand separator.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.ListSep">
            <summary>List separator.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.MoneyDecimalSep">
            <summary>Money decimal separator.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.MoneyThousandSep">
            <summary>Money thousand separator.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.CurrentYear">
            <summary>Current year.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.MoneyFmt">
            <summary>Money format.
                            Example: #.##0,00 kr;-#.##0,00 kr</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.TimeFmt">
            <summary>Time format.
                            Example: hh:mm:ss</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.DateFmt">
            <summary>Date format.
                            Example: YYYY-MM-DD</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.TimestampFmt">
            <summary>Time stamp format.
                            Example: YYYY-MM-DD hh:mm:ss[.fff]</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.CalendarStrings">
            <summary>Information about the calendar.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.FirstWeekDay">
            <summary>First day of the week, starting from 0.
                            According to ISO 8601, Monday is the first day of the week.
                             
                                0 = Monday
                                1 = Tuesday
                                ..
                                6 = Sunday
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.BrokenWeeks">
            <summary>Is set to true if broken weeks are allowed in a year.
                            According to ISO 8601, no broken weeks should be allowed.
                            This property is not shown if set to false.
                            If qBrokenWeeks is set to true, qReferenceDay is irrelevant.
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.ReferenceDay">
            <summary>Day in the year that is always in week 1.
                            According to ISO 8601, January 4th should always be part of the first week of the year (qReferenceDay=4).
                            Recommended values are in the range 1 and 7.
                            If this property has not been set in a script, the returned value comes from the Windows operating system.
                            This property is not relevant if there are broken weeks in the year.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.FirstMonthOfYear">
            <summary>First month of the year, starting from 1.
                            According to ISO 8601, Januaryis the first month of the year.
                             
                                1 = January
                                2 = February
                                 12 = January
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.Collation">
            <summary>Locale name (following language tagging convention RFC 4646):
                            &lt;language&gt;-&lt;REGION&gt;
                             
                            Where
                             
                                language is a lowercase ISO 639 language code
                                REGION specifies an uppercase ISO 3166 country code.
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.LocaleInfo.NumericalAbbreviation">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SortCriteria">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByState">
            <summary>Sorts the field values according to their logical state (selected, optional, alternative or excluded).</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByFrequency">
            <summary>Sorts the field values by frequency (number of occurrences in the field).</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByNumeric">
            <summary>Sorts the field values by numeric value.</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByAscii">
            <summary>Sorts the field by alphabetical order.</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByLoadOrder">
            <summary>Sorts the field values by the initial load order.</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByExpression">
            <summary>Sorts the field by expression.</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.Expression">
            <summary>Sort by expression.</summary>
        </member>
        <member name="P:Qlik.Engine.SortCriteria.SortByGreyness">
            <summary />
        </member>
        <member name="T:Qlik.Engine.AlternateStateData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AlternateStateData.StateName">
            <summary>Name of the alternate state.
                             
 
Default is current selections: $</summary>
        </member>
        <member name="P:Qlik.Engine.AlternateStateData.FieldItems">
            <summary>List of the selections</summary>
        </member>
        <member name="T:Qlik.Engine.BookmarkVariableItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.BookmarkVariableItem.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkVariableItem.Value">
            <summary>Value of the variable.</summary>
        </member>
        <member name="T:Qlik.Engine.StateEnumType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.LOCKED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.SELECTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.OPTION">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.DESELECTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.ALTERNATIVE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.EXCLUDED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.EXCL_SELECTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.EXCL_LOCKED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.StateEnumType.NSTATES">
            <summary />
        </member>
        <member name="T:Qlik.Engine.Range">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Range.Min">
            <summary>Lowest value in the range</summary>
        </member>
        <member name="P:Qlik.Engine.Range.Max">
            <summary>Highest value in the range</summary>
        </member>
        <member name="P:Qlik.Engine.Range.MinInclEq">
            <summary>If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)]
                            Example:
                            The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.</summary>
        </member>
        <member name="P:Qlik.Engine.Range.MaxInclEq">
            <summary>If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)]
                            Example:
                            The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.</summary>
        </member>
        <member name="T:Qlik.Engine.RangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.RangeSelectInfo.RangeLo">
            <summary>Lowest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.RangeSelectInfo.RangeHi">
            <summary>Highest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.RangeSelectInfo.Measure">
            <summary>Label of the measure.</summary>
        </member>
        <member name="T:Qlik.Engine.Rect">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Rect.Left">
            <summary>Position from the left.
                            Corresponds to the first column.</summary>
        </member>
        <member name="P:Qlik.Engine.Rect.Top">
            <summary>Position from the top.
                            Corresponds to the first row.</summary>
        </member>
        <member name="P:Qlik.Engine.Rect.Width">
            <summary>Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="P:Qlik.Engine.Rect.Height">
            <summary>Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="T:Qlik.Engine.OtherTotalSpecProp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherMode">
            <summary>Determines how many dimension values are displayed.
                            The default value is OTHER_OFF.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherCounted">
            <summary>Number of values to display. The number of values can be entered as a calculated formula.
                            This parameter is used when qOtherMode is set to OTHER_COUNTED.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherLimit">
            <summary>Value used to limit the dimension values. The limit can be entered as a calculated formula.
                            This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET
                                 
                             
                             </summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherLimitMode">
            <summary>Sets the limit for the Others mode.
                            This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.SuppressOther">
            <summary>If set to true, the group Others is not displayed as a dimension value.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.ForceBadValueKeeping">
            <summary>This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET
                                 
                             
                            and when the dimension values include not numeric values.
                            Set this parameter to true to include text values in the returned values.
                            The default value is true.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.ApplyEvenWhenPossiblyWrongResult">
            <summary>Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes.
                            For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe.
                            The default value is true.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.GlobalOtherGrouping">
            <summary>This parameter applies to inner dimensions.
                            If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherCollapseInnerDimensions">
            <summary>If set to true, it collapses the inner dimensions (if any) in the group Others.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.OtherSortMode">
            <summary>Defines the sort order of the dimension values.
                            The default value is OTHER_SORT_DESCENDING.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.TotalMode">
            <summary>If set to TOTAL_EXPR, the total of the dimension values is returned.
                            The default value is TOTAL_OFF.</summary>
        </member>
        <member name="P:Qlik.Engine.OtherTotalSpecProp.ReferencedExpression">
            <summary>This parameter applies when there are several measures.
                            Name of the measure to use for the calculation of Others for a specific dimension.</summary>
        </member>
        <member name="T:Qlik.Engine.CharRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CharRange.CharPos">
            <summary>Position of the first search occurrence</summary>
        </member>
        <member name="P:Qlik.Engine.CharRange.CharCount">
            <summary>Number of occurrences found</summary>
        </member>
        <member name="T:Qlik.Engine.FieldValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldValue.Text">
            <summary>Text related to the field value
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldValue.IsNumeric">
            <summary>Is set to true if the value is a numeric.
                            This parameter is optional. Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldValue.Number">
            <summary>Numeric value of the field.
                            This parameter is displayed if qIsNumeric is set to true.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.FieldDescription">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldDescription.InternalNumber">
            <summary>Internal number of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.SrcTables">
            <summary>List of table names.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsSystem">
            <summary>If set to true, it means that the field is a system field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsHidden">
            <summary>If set to true, it means that the field is hidden.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.DistinctOnly">
            <summary>If set to true, only distinct field values are shown.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.TotalCount">
            <summary>Total number of field values.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsLocked">
            <summary>If set to true, it means that the field is locked.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.AlwaysOneSelected">
            <summary>If set to true, it means that the field has one and only one selection (not 0 and not more than 1).
                            If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsNumeric">
            <summary>Is set to true if the value is a numeric.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.Comment">
            <summary>Field comment.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.IsDefinitionOnly">
            <summary>If set to true, it means that the field is a field on the fly.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDescription.ByteSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.TableViewDlgSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewDlgSaveInfo.Pos">
            <summary>Information about the position of the dialog window.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewDlgSaveInfo.CtlInfo">
            <summary>Set of data for internal and source view modes.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewDlgSaveInfo.Mode">
            <summary>View mode to display when opening Qlik Sense data model viewer.
                            One of:
                             
                                0 for internal view mode
                                1 for source view mode</summary>
        </member>
        <member name="T:Qlik.Engine.TextMacro">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TextMacro.Tag">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.TextMacro.RefSeqNo">
            <summary>Order in which the variable was referenced during the script execution.
                            The same number sequence is used for both qRefSeqNo and qSetSeqNo.</summary>
        </member>
        <member name="P:Qlik.Engine.TextMacro.SetSeqNo">
            <summary>Order in which the variable was updated during the script execution.
                            The same number sequence is used for both qRefSeqNo and qSetSeqNo.</summary>
        </member>
        <member name="P:Qlik.Engine.TextMacro.DisplayString">
            <summary>Variable value.</summary>
        </member>
        <member name="P:Qlik.Engine.TextMacro.IsSystem">
            <summary>Is set to true if the variable is a system variable.</summary>
        </member>
        <member name="P:Qlik.Engine.TextMacro.IsReserved">
            <summary>Is set to true if the variable is a reserved variable.</summary>
        </member>
        <member name="T:Qlik.Engine.TableRow">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableRow.Value">
            <summary>Array of field values.</summary>
        </member>
        <member name="T:Qlik.Engine.SampleResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SampleResult.FieldOrColumn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SampleResult.Values">
            <summary />
        </member>
        <member name="T:Qlik.Engine.LineageInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LineageInfo.Discriminator">
            <summary />
        </member>
        <member name="P:Qlik.Engine.LineageInfo.Statement">
            <summary />
        </member>
        <member name="T:Qlik.Engine.AlfaNumString">
            <summary />
        </member>
        <member name="P:Qlik.Engine.AlfaNumString.String">
            <summary>Calculated value.</summary>
        </member>
        <member name="P:Qlik.Engine.AlfaNumString.IsNum">
            <summary>Is set to true if the value is a numeric.</summary>
        </member>
        <member name="T:Qlik.Engine.ProgressData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.Started">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.Finished">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.Completed">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.Total">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.KB">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.Millisecs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.UserInteractionWanted">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.PersistentProgress">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.TransientProgress">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.ErrorData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.PersistentProgressMessages">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressData.TransientProgressMessage">
            <summary />
        </member>
        <member name="T:Qlik.Engine.InteractDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.InteractDef.Type">
            <summary>Interaction type.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Title">
            <summary>Title used in the message box dialog.
                            This property is relevant if qType is IT_MSGBOX.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Msg">
            <summary>Message used in the message box dialog.
                            This property is relevant if qType is IT_MSGBOX.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Buttons">
            <summary>Buttons displayed in the message box dialog.
                             This property is relevant if qType is IT_MSGBOX.
                            One of:
                             
                                0 means that the qButtons property is not relevant.
                                17 means that the message box contains the OK and Cancel buttons or the stop-sign icon.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Line">
            <summary>Next script statement to be executed.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.OldLineNr">
            <summary>First line number of the previously executed statement.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.NewLineNr">
            <summary>First line number of the next statement to be executed.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Path">
            <summary>Path specified by the Include script variable.
                            This property is used if the type of interaction is IT_SCRIPTLINE.
                            Example of an Include variable:
                            $(Include=lib:\\MyDataFiles\abc.txt);</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Hidden">
            <summary>This property is set to true if the returned statement is an hidden script statement.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Result">
            <summary>Not relevant for describing the requested user interaction.</summary>
        </member>
        <member name="P:Qlik.Engine.InteractDef.Input">
            <summary>Is not used in Qlik Sense.</summary>
        </member>
        <member name="T:Qlik.Engine.LogOnType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.LogOnType.LOG_ON_SERVICE_USER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.LogOnType.LOG_ON_CURRENT_USER">
            <summary />
        </member>
        <member name="T:Qlik.Engine.TableRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableRecord.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.Loose">
            <summary>This property is set to true if the table is loose.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.NoOfRows">
            <summary>Number of rows in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.Fields">
            <summary>Information about the fields in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.Pos">
            <summary>Information about the position of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.Comment">
            <summary>Comment related to the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.IsDirectDiscovery">
            <summary>If set to true, Direct Discovery is used.
                            Direct Discovery fields are not loaded into memory and remain in the external database.</summary>
        </member>
        <member name="P:Qlik.Engine.TableRecord.IsSynthetic">
            <summary>This property is set to true if the table contains a synthetic key.</summary>
        </member>
        <member name="T:Qlik.Engine.SourceKeyRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SourceKeyRecord.KeyFields">
            <summary>Name of the key field.</summary>
        </member>
        <member name="P:Qlik.Engine.SourceKeyRecord.Tables">
            <summary>Table the key belongs to.</summary>
        </member>
        <member name="T:Qlik.Engine.IEditorBreakpoint">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IEditorBreakpoint.bufferName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IEditorBreakpoint.lineIx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IEditorBreakpoint.Enabled">
            <summary>If set to true then the breakpoint is enabled (in use).</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldAttributes">
            <summary>Sets the formatting of a field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.Type">
            <summary>Type of the field.
                            Default is U.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.nDec">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.UseThou">
            <summary>Defines whether or not a thousands separator must be used.
                            Default is 0.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.Fmt">
            <summary>Defines the format pattern that applies to qText.
                             Is used in connection to the type of the field (parameter qType).
                            For more information, see Formatting mechanism.
                            Example: YYYY-MM-DD for a date</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.Dec">
            <summary>Defines the decimal separator.
                            Example: .</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldAttributes.Thou">
            <summary>Defines the thousand separator (if any).
                            Is used if qUseThou is set to 1.
                            Example: ,</summary>
        </member>
        <member name="T:Qlik.Engine.FieldAttrType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.UNKNOWN">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.ASCII">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.INTEGER">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.REAL">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.FIX">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.MONEY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.DATE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.TIME">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.TIMESTAMP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldAttrType.INTERVAL">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISize">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISize.cx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISize.cy">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IValueExpr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IValueExpr.v">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IStringExpr">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IStringExpr.v">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ILocaleInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.DecimalSep">
            <summary>Decimal separator.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.ThousandSep">
            <summary>Thousand separator.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.ListSep">
            <summary>List separator.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.MoneyDecimalSep">
            <summary>Money decimal separator.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.MoneyThousandSep">
            <summary>Money thousand separator.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.CurrentYear">
            <summary>Current year.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.MoneyFmt">
            <summary>Money format.
                            Example: #.##0,00 kr;-#.##0,00 kr</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.TimeFmt">
            <summary>Time format.
                            Example: hh:mm:ss</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.DateFmt">
            <summary>Date format.
                            Example: YYYY-MM-DD</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.TimestampFmt">
            <summary>Time stamp format.
                            Example: YYYY-MM-DD hh:mm:ss[.fff]</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.CalendarStrings">
            <summary>Information about the calendar.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.FirstWeekDay">
            <summary>First day of the week, starting from 0.
                            According to ISO 8601, Monday is the first day of the week.
                             
                                0 = Monday
                                1 = Tuesday
                                ..
                                6 = Sunday
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.BrokenWeeks">
            <summary>Is set to true if broken weeks are allowed in a year.
                            According to ISO 8601, no broken weeks should be allowed.
                            This property is not shown if set to false.
                            If qBrokenWeeks is set to true, qReferenceDay is irrelevant.
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.ReferenceDay">
            <summary>Day in the year that is always in week 1.
                            According to ISO 8601, January 4th should always be part of the first week of the year (qReferenceDay=4).
                            Recommended values are in the range 1 and 7.
                            If this property has not been set in a script, the returned value comes from the Windows operating system.
                            This property is not relevant if there are broken weeks in the year.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.FirstMonthOfYear">
            <summary>First month of the year, starting from 1.
                            According to ISO 8601, Januaryis the first month of the year.
                             
                                1 = January
                                2 = February
                                 12 = January
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.Collation">
            <summary>Locale name (following language tagging convention RFC 4646):
                            &lt;language&gt;-&lt;REGION&gt;
                             
                            Where
                             
                                language is a lowercase ISO 639 language code
                                REGION specifies an uppercase ISO 3166 country code.
                             
                            If this property has not been set in a script, the returned value comes from the Windows operating system.</summary>
        </member>
        <member name="P:Qlik.Engine.ILocaleInfo.NumericalAbbreviation">
            <summary />
        </member>
        <member name="T:Qlik.Engine.CalendarStrings">
            <summary />
        </member>
        <member name="P:Qlik.Engine.CalendarStrings.DayNames">
            <summary>List of short day names.</summary>
        </member>
        <member name="P:Qlik.Engine.CalendarStrings.MonthNames">
            <summary>List of short month names.</summary>
        </member>
        <member name="P:Qlik.Engine.CalendarStrings.LongDayNames">
            <summary>List of long day names.</summary>
        </member>
        <member name="P:Qlik.Engine.CalendarStrings.LongMonthNames">
            <summary>List of long month names.</summary>
        </member>
        <member name="T:Qlik.Engine.ISortCriteria">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByState">
            <summary>Sorts the field values according to their logical state (selected, optional, alternative or excluded).</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByFrequency">
            <summary>Sorts the field values by frequency (number of occurrences in the field).</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByNumeric">
            <summary>Sorts the field values by numeric value.</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByAscii">
            <summary>Sorts the field by alphabetical order.</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByLoadOrder">
            <summary>Sorts the field values by the initial load order.</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByExpression">
            <summary>Sorts the field by expression.</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.Expression">
            <summary>Sort by expression.</summary>
        </member>
        <member name="P:Qlik.Engine.ISortCriteria.SortByGreyness">
            <summary />
        </member>
        <member name="T:Qlik.Engine.SortDirection">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAlternateStateData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAlternateStateData.StateName">
            <summary>Name of the alternate state.
                             
 
Default is current selections: $</summary>
        </member>
        <member name="P:Qlik.Engine.IAlternateStateData.FieldItems">
            <summary>List of the selections</summary>
        </member>
        <member name="T:Qlik.Engine.BookmarkFieldItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.Def">
            <summary>Name and type of the field</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.Locked">
            <summary>Indicates if the field is locked.
                            Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.SelectInfo">
            <summary>Information on the selections criteria</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.Values">
            <summary>List of the selected values
                            Either the list of selected values or the list of excluded values is displayed.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.ExcludedValues">
            <summary>List of excluded values.
                            Either the list of selected values or the list of excluded values is displayed.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.AndMode">
            <summary>If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected.
                            The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected.
                            This parameter is not returned if set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.BookmarkFieldItem.OneAndOnlyOne">
            <summary>If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected.
                            The default value is false. This parameter is not returned if set to false.</summary>
        </member>
        <member name="T:Qlik.Engine.IBookmarkVariableItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IBookmarkVariableItem.Name">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkVariableItem.Value">
            <summary>Value of the variable.</summary>
        </member>
        <member name="T:Qlik.Engine.IRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IRange.Min">
            <summary>Lowest value in the range</summary>
        </member>
        <member name="P:Qlik.Engine.IRange.Max">
            <summary>Highest value in the range</summary>
        </member>
        <member name="P:Qlik.Engine.IRange.MinInclEq">
            <summary>If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)]
                            Example:
                            The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.</summary>
        </member>
        <member name="P:Qlik.Engine.IRange.MaxInclEq">
            <summary>If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)]
                            Example:
                            The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.</summary>
        </member>
        <member name="T:Qlik.Engine.IRangeSelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IRangeSelectInfo.RangeLo">
            <summary>Lowest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.IRangeSelectInfo.RangeHi">
            <summary>Highest value in the range.</summary>
        </member>
        <member name="P:Qlik.Engine.IRangeSelectInfo.Measure">
            <summary>Label of the measure.</summary>
        </member>
        <member name="T:Qlik.Engine.IRect">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IRect.Left">
            <summary>Position from the left.
                            Corresponds to the first column.</summary>
        </member>
        <member name="P:Qlik.Engine.IRect.Top">
            <summary>Position from the top.
                            Corresponds to the first row.</summary>
        </member>
        <member name="P:Qlik.Engine.IRect.Width">
            <summary>Number of columns in the page. The indexing of the columns may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="P:Qlik.Engine.IRect.Height">
            <summary>Number of rows or elements in the page. The indexing of the rows may vary depending on whether the cells are expanded or not (parameter qAlwaysFullyExpanded in HyperCubeDef).</summary>
        </member>
        <member name="T:Qlik.Engine.IOtherTotalSpecProp">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherMode">
            <summary>Determines how many dimension values are displayed.
                            The default value is OTHER_OFF.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherCounted">
            <summary>Number of values to display. The number of values can be entered as a calculated formula.
                            This parameter is used when qOtherMode is set to OTHER_COUNTED.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherLimit">
            <summary>Value used to limit the dimension values. The limit can be entered as a calculated formula.
                            This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET
                                 
                             
                             </summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherLimitMode">
            <summary>Sets the limit for the Others mode.
                            This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.SuppressOther">
            <summary>If set to true, the group Others is not displayed as a dimension value.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.ForceBadValueKeeping">
            <summary>This parameter is used when qOtherMode is set to:
                             
                                OTHER_ABS_LIMITED
                                OTHER_REL_LIMITED
                                 
                                    OTHER_ABS_ACC_TARGET
                                    OTHER_REL_ACC_TARGET
                                 
                             
                            and when the dimension values include not numeric values.
                            Set this parameter to true to include text values in the returned values.
                            The default value is true.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.ApplyEvenWhenPossiblyWrongResult">
            <summary>Set this parameter to true to allow the calculation of Others even if the engine detects some potential mistakes.
                            For example the country Russia is part of the continent Europe and Asia. If you have an hypercube with two dimensions Country and Continent and one measure Population, the engine can detect that the population of Russia is included in both the continent Asia and Europe.
                            The default value is true.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.GlobalOtherGrouping">
            <summary>This parameter applies to inner dimensions.
                            If this parameter is set to true, the restrictions are calculated on the selected dimension only. All previous dimensions are ignored.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherCollapseInnerDimensions">
            <summary>If set to true, it collapses the inner dimensions (if any) in the group Others.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.OtherSortMode">
            <summary>Defines the sort order of the dimension values.
                            The default value is OTHER_SORT_DESCENDING.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.TotalMode">
            <summary>If set to TOTAL_EXPR, the total of the dimension values is returned.
                            The default value is TOTAL_OFF.</summary>
        </member>
        <member name="P:Qlik.Engine.IOtherTotalSpecProp.ReferencedExpression">
            <summary>This parameter applies when there are several measures.
                            Name of the measure to use for the calculation of Others for a specific dimension.</summary>
        </member>
        <member name="T:Qlik.Engine.OtherMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_OFF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_COUNTED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_ABS_LIMITED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_ABS_ACC_TARGET">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_REL_LIMITED">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherMode.OTHER_REL_ACC_TARGET">
            <summary />
        </member>
        <member name="T:Qlik.Engine.OtherLimitMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherLimitMode.OTHER_GE_LIMIT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherLimitMode.OTHER_LE_LIMIT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherLimitMode.OTHER_GT_LIMIT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherLimitMode.OTHER_LT_LIMIT">
            <summary />
        </member>
        <member name="T:Qlik.Engine.OtherSortMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherSortMode.OTHER_SORT_DEFAULT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherSortMode.OTHER_SORT_DESCENDING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.OtherSortMode.OTHER_SORT_ASCENDING">
            <summary />
        </member>
        <member name="T:Qlik.Engine.TotalMode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.TotalMode.TOTAL_OFF">
            <summary />
        </member>
        <member name="F:Qlik.Engine.TotalMode.TOTAL_EXPR">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ICharRange">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICharRange.CharPos">
            <summary>Position of the first search occurrence</summary>
        </member>
        <member name="P:Qlik.Engine.ICharRange.CharCount">
            <summary>Number of occurrences found</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldValue">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldValue.Text">
            <summary>Text related to the field value
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldValue.IsNumeric">
            <summary>Is set to true if the value is a numeric.
                            This parameter is optional. Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldValue.Number">
            <summary>Numeric value of the field.
                            This parameter is displayed if qIsNumeric is set to true.
                            This parameter is optional.</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldDescription">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.InternalNumber">
            <summary>Internal number of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.SrcTables">
            <summary>List of table names.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsSystem">
            <summary>If set to true, it means that the field is a system field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsHidden">
            <summary>If set to true, it means that the field is hidden.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsSemantic">
            <summary>If set to true, it means that the field is a semantic.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.DistinctOnly">
            <summary>If set to true, only distinct field values are shown.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.Cardinal">
            <summary>Number of distinct field values.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.TotalCount">
            <summary>Total number of field values.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsLocked">
            <summary>If set to true, it means that the field is locked.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.AlwaysOneSelected">
            <summary>If set to true, it means that the field has one and only one selection (not 0 and not more than 1).
                            If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.AndMode">
            <summary>If set to true a logical AND (instead of a logical OR) is used when making selections in a field.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsNumeric">
            <summary>Is set to true if the value is a numeric.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.Comment">
            <summary>Field comment.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.Tags">
            <summary>Gives information on a field. For example, it can return the type of the field.
                            Examples: key, text, ASCII</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.IsDefinitionOnly">
            <summary>If set to true, it means that the field is a field on the fly.
                            The default value is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDescription.ByteSize">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ITableViewDlgSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewDlgSaveInfo.Pos">
            <summary>Information about the position of the dialog window.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewDlgSaveInfo.CtlInfo">
            <summary>Set of data for internal and source view modes.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewDlgSaveInfo.Mode">
            <summary>View mode to display when opening Qlik Sense data model viewer.
                            One of:
                             
                                0 for internal view mode
                                1 for source view mode</summary>
        </member>
        <member name="T:Qlik.Engine.TableViewCtlSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewCtlSaveInfo.InternalView">
            <summary>Internal view mode.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewCtlSaveInfo.SourceView">
            <summary>Source view mode.</summary>
        </member>
        <member name="T:Qlik.Engine.ITextMacro">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITextMacro.Tag">
            <summary>Name of the variable.</summary>
        </member>
        <member name="P:Qlik.Engine.ITextMacro.RefSeqNo">
            <summary>Order in which the variable was referenced during the script execution.
                            The same number sequence is used for both qRefSeqNo and qSetSeqNo.</summary>
        </member>
        <member name="P:Qlik.Engine.ITextMacro.SetSeqNo">
            <summary>Order in which the variable was updated during the script execution.
                            The same number sequence is used for both qRefSeqNo and qSetSeqNo.</summary>
        </member>
        <member name="P:Qlik.Engine.ITextMacro.DisplayString">
            <summary>Variable value.</summary>
        </member>
        <member name="P:Qlik.Engine.ITextMacro.IsSystem">
            <summary>Is set to true if the variable is a system variable.</summary>
        </member>
        <member name="P:Qlik.Engine.ITextMacro.IsReserved">
            <summary>Is set to true if the variable is a reserved variable.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableRow">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableRow.Value">
            <summary>Array of field values.</summary>
        </member>
        <member name="T:Qlik.Engine.ISampleResult">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISampleResult.FieldOrColumn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISampleResult.Values">
            <summary />
        </member>
        <member name="T:Qlik.Engine.FieldOrColumn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldOrColumn.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldOrColumn.TableName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ILineageInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILineageInfo.Discriminator">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ILineageInfo.Statement">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IAlfaNumString">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IAlfaNumString.String">
            <summary>Calculated value.</summary>
        </member>
        <member name="P:Qlik.Engine.IAlfaNumString.IsNum">
            <summary>Is set to true if the value is a numeric.</summary>
        </member>
        <member name="T:Qlik.Engine.IProgressData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.Started">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.Finished">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.Completed">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.Total">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.KB">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.Millisecs">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.UserInteractionWanted">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.PersistentProgress">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.TransientProgress">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.ErrorData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.PersistentProgressMessages">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressData.TransientProgressMessage">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ErrorData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ErrorData.ErrorString">
            <summary>Detailed information about the error message.</summary>
        </member>
        <member name="P:Qlik.Engine.ErrorData.LineEnd">
            <summary>Line termination characters.</summary>
        </member>
        <member name="P:Qlik.Engine.ErrorData.Line">
            <summary>Script statement where the error occurs.</summary>
        </member>
        <member name="P:Qlik.Engine.ErrorData.ErrorDataCode">
            <summary>Type of the error messages.</summary>
        </member>
        <member name="P:Qlik.Engine.ErrorData.Message">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ProgressMessage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ProgressMessage.MessageCode">
            <summary>Code number to the corresponding localized message string.</summary>
        </member>
        <member name="P:Qlik.Engine.ProgressMessage.MessageParameters">
            <summary>Parameters to be inserted in the localized message string.</summary>
        </member>
        <member name="T:Qlik.Engine.IInteractDef">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Type">
            <summary>Interaction type.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Title">
            <summary>Title used in the message box dialog.
                            This property is relevant if qType is IT_MSGBOX.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Msg">
            <summary>Message used in the message box dialog.
                            This property is relevant if qType is IT_MSGBOX.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Buttons">
            <summary>Buttons displayed in the message box dialog.
                             This property is relevant if qType is IT_MSGBOX.
                            One of:
                             
                                0 means that the qButtons property is not relevant.
                                17 means that the message box contains the OK and Cancel buttons or the stop-sign icon.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Line">
            <summary>Next script statement to be executed.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.OldLineNr">
            <summary>First line number of the previously executed statement.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.NewLineNr">
            <summary>First line number of the next statement to be executed.
                            This property is used if the type of interaction is IT_SCRIPTLINE.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Path">
            <summary>Path specified by the Include script variable.
                            This property is used if the type of interaction is IT_SCRIPTLINE.
                            Example of an Include variable:
                            $(Include=lib:\\MyDataFiles\abc.txt);</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Hidden">
            <summary>This property is set to true if the returned statement is an hidden script statement.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Result">
            <summary>Not relevant for describing the requested user interaction.</summary>
        </member>
        <member name="P:Qlik.Engine.IInteractDef.Input">
            <summary>Is not used in Qlik Sense.</summary>
        </member>
        <member name="T:Qlik.Engine.InteractType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_MSGBOX">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_SCRIPTLINE">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_BREAK">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_INPUT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_END">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_PASSWD">
            <summary />
        </member>
        <member name="F:Qlik.Engine.InteractType.IT_USERNAME">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ITableRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableRecord.Name">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.Loose">
            <summary>This property is set to true if the table is loose.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.NoOfRows">
            <summary>Number of rows in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.Fields">
            <summary>Information about the fields in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.Pos">
            <summary>Information about the position of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.Comment">
            <summary>Comment related to the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.IsDirectDiscovery">
            <summary>If set to true, Direct Discovery is used.
                            Direct Discovery fields are not loaded into memory and remain in the external database.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableRecord.IsSynthetic">
            <summary>This property is set to true if the table contains a synthetic key.</summary>
        </member>
        <member name="T:Qlik.Engine.FieldInTableData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.OriginalFields">
            <summary>Is shown for fixed records.
                            qOriginalFieldName and qName are identical if no field names are used in the file.
                            qOriginalFieldName differs from qName if embedded file names are used in the file.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.Present">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.HasNull">
            <summary>This property is set to true if the field contains some Null values.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.HasWild">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.HasDuplicates">
            <summary>This property is set to true if the field contains some duplicate values.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.IsSynthetic">
            <summary>This property is set to true if the field contains a synthetic key.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.InformationDensity">
            <summary>Number of records that have values (i.e. not NULL) in the field as compared to the total
number of records in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.nNonNulls">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.nRows">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.SubsetRatio">
            <summary>Number of distinct values in the field (in the current table) as compared to the total
number of distinct values of this field (in all tables).</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.nTotalDistinctValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.nPresentDistinctValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.KeyType">
            <summary>Tells if the field is a key field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.Comment">
            <summary>Comment related to the field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.Tags">
            <summary>List of tags related to the field.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.DerivedFields">
            <summary>List of the derived fields.</summary>
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.IsFieldOnTheFly">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldInTableData.ReadableName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.Point">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Point.x">
            <summary />
        </member>
        <member name="P:Qlik.Engine.Point.y">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISourceKeyRecord">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISourceKeyRecord.KeyFields">
            <summary>Name of the key field.</summary>
        </member>
        <member name="P:Qlik.Engine.ISourceKeyRecord.Tables">
            <summary>Table the key belongs to.</summary>
        </member>
        <member name="T:Qlik.Engine.ICalendarStrings">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ICalendarStrings.DayNames">
            <summary>List of short day names.</summary>
        </member>
        <member name="P:Qlik.Engine.ICalendarStrings.MonthNames">
            <summary>List of short month names.</summary>
        </member>
        <member name="P:Qlik.Engine.ICalendarStrings.LongDayNames">
            <summary>List of long day names.</summary>
        </member>
        <member name="P:Qlik.Engine.ICalendarStrings.LongMonthNames">
            <summary>List of long month names.</summary>
        </member>
        <member name="T:Qlik.Engine.IBookmarkFieldItem">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.Def">
            <summary>Name and type of the field</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.Locked">
            <summary>Indicates if the field is locked.
                            Default is false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.SelectInfo">
            <summary>Information on the selections criteria</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.Values">
            <summary>List of the selected values
                            Either the list of selected values or the list of excluded values is displayed.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.ExcludedValues">
            <summary>List of excluded values.
                            Either the list of selected values or the list of excluded values is displayed.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.AndMode">
            <summary>If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected.
                            The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected.
                            This parameter is not returned if set to false.</summary>
        </member>
        <member name="P:Qlik.Engine.IBookmarkFieldItem.OneAndOnlyOne">
            <summary>If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected.
                            The default value is false. This parameter is not returned if set to false.</summary>
        </member>
        <member name="T:Qlik.Engine.FieldDefEx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.FieldDefEx.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.FieldDefEx.Type">
            <summary>Type of data entity</summary>
        </member>
        <member name="T:Qlik.Engine.SelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SelectInfo.TextSearch">
            <summary>Text search string.
                            Everything that matches the text is selected.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectInfo.RangeLo">
            <summary>Lower value of the search range.
                            This parameter is used when performing range selections or text searches in dimensions.
                            Default is Null.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectInfo.RangeHi">
            <summary>Highest value of the search range.
                            This parameter is used when performing range selections or text searches in dimensions.
                            Default is Null.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectInfo.NumberFormat">
            <summary>Gives information about the formatting of the range.
                            This parameter is used when performing range selections or text searches in dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.SelectInfo.RangeInfo">
            <summary>This parameter is used when performing range selections or text searches in measures.
                            Gives information about the range of selections.
                            bool SoftLock = false;</summary>
        </member>
        <member name="P:Qlik.Engine.SelectInfo.SoftLock">
            <summary />
        </member>
        <member name="P:Qlik.Engine.SelectInfo.ContinuousRangeInfo">
            <summary>List of information about ranges for selections.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableViewCtlSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewCtlSaveInfo.InternalView">
            <summary>Internal view mode.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewCtlSaveInfo.SourceView">
            <summary>Source view mode.</summary>
        </member>
        <member name="T:Qlik.Engine.TableViewSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewSaveInfo.Tables">
            <summary>List of the tables in the database model viewer.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewSaveInfo.BroomPoints">
            <summary>List of the broom points in the database model viewer.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewSaveInfo.ConnectionPoints">
            <summary>List of connection points in the database model viewer.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewSaveInfo.ZoomFactor">
            <summary>Zoom factor in the database model viewer.
                            The default value is 1.0.</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldOrColumn">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldOrColumn.FieldName">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldOrColumn.TableName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IErrorData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IErrorData.ErrorString">
            <summary>Detailed information about the error message.</summary>
        </member>
        <member name="P:Qlik.Engine.IErrorData.LineEnd">
            <summary>Line termination characters.</summary>
        </member>
        <member name="P:Qlik.Engine.IErrorData.Line">
            <summary>Script statement where the error occurs.</summary>
        </member>
        <member name="P:Qlik.Engine.IErrorData.ErrorDataCode">
            <summary>Type of the error messages.</summary>
        </member>
        <member name="P:Qlik.Engine.IErrorData.Message">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ErrorDataCode">
            <summary />
        </member>
        <member name="F:Qlik.Engine.ErrorDataCode.EDC_ERROR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.ErrorDataCode.EDC_WARNING">
            <summary />
        </member>
        <member name="F:Qlik.Engine.ErrorDataCode.EDC_CIRCULAR_REFERENCE">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IProgressMessage">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IProgressMessage.MessageCode">
            <summary>Code number to the corresponding localized message string.</summary>
        </member>
        <member name="P:Qlik.Engine.IProgressMessage.MessageParameters">
            <summary>Parameters to be inserted in the localized message string.</summary>
        </member>
        <member name="T:Qlik.Engine.IFieldInTableData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.Name">
            <summary>Name of the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.OriginalFields">
            <summary>Is shown for fixed records.
                            qOriginalFieldName and qName are identical if no field names are used in the file.
                            qOriginalFieldName differs from qName if embedded file names are used in the file.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.Present">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.HasNull">
            <summary>This property is set to true if the field contains some Null values.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.HasWild">
            <summary> </summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.HasDuplicates">
            <summary>This property is set to true if the field contains some duplicate values.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.IsSynthetic">
            <summary>This property is set to true if the field contains a synthetic key.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.InformationDensity">
            <summary>Number of records that have values (i.e. not NULL) in the field as compared to the total
number of records in the table.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.nNonNulls">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.nRows">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.SubsetRatio">
            <summary>Number of distinct values in the field (in the current table) as compared to the total
number of distinct values of this field (in all tables).</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.nTotalDistinctValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.nPresentDistinctValues">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.KeyType">
            <summary>Tells if the field is a key field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.Comment">
            <summary>Comment related to the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.Tags">
            <summary>List of tags related to the field.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.DerivedFields">
            <summary>List of the derived fields.</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.IsFieldOnTheFly">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldInTableData.ReadableName">
            <summary />
        </member>
        <member name="T:Qlik.Engine.KeyType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.KeyType.NOT_KEY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.KeyType.ANY_KEY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.KeyType.PRIMARY_KEY">
            <summary />
        </member>
        <member name="F:Qlik.Engine.KeyType.PERFECT_KEY">
            <summary />
        </member>
        <member name="T:Qlik.Engine.DerivedFieldsInTableData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.DerivedFieldsInTableData.DefinitionName">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.DerivedFieldsInTableData.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="P:Qlik.Engine.DerivedFieldsInTableData.Active">
            <summary>Is set to true is the derived field is in use.</summary>
        </member>
        <member name="T:Qlik.Engine.IPoint">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPoint.x">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IPoint.y">
            <summary />
        </member>
        <member name="T:Qlik.Engine.IFieldDefEx">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IFieldDefEx.Name">
            <summary>Name of the field</summary>
        </member>
        <member name="P:Qlik.Engine.IFieldDefEx.Type">
            <summary>Type of data entity</summary>
        </member>
        <member name="T:Qlik.Engine.FieldType">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.NOT_PRESENT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.PRESENT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_CYCLIC_GROUP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_DRILL_GROUP">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_VAR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_EXPR">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_IMPLICIT">
            <summary />
        </member>
        <member name="F:Qlik.Engine.FieldType.IS_DETAIL">
            <summary />
        </member>
        <member name="T:Qlik.Engine.ISelectInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.TextSearch">
            <summary>Text search string.
                            Everything that matches the text is selected.
                            This parameter is optional.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.RangeLo">
            <summary>Lower value of the search range.
                            This parameter is used when performing range selections or text searches in dimensions.
                            Default is Null.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.RangeHi">
            <summary>Highest value of the search range.
                            This parameter is used when performing range selections or text searches in dimensions.
                            Default is Null.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.NumberFormat">
            <summary>Gives information about the formatting of the range.
                            This parameter is used when performing range selections or text searches in dimensions.</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.RangeInfo">
            <summary>This parameter is used when performing range selections or text searches in measures.
                            Gives information about the range of selections.
                            bool SoftLock = false;</summary>
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.SoftLock">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ISelectInfo.ContinuousRangeInfo">
            <summary>List of information about ranges for selections.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableViewSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewSaveInfo.Tables">
            <summary>List of the tables in the database model viewer.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewSaveInfo.BroomPoints">
            <summary>List of the broom points in the database model viewer.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewSaveInfo.ConnectionPoints">
            <summary>List of connection points in the database model viewer.
                            Not used in Qlik Sense.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewSaveInfo.ZoomFactor">
            <summary>Zoom factor in the database model viewer.
                            The default value is 1.0.</summary>
        </member>
        <member name="T:Qlik.Engine.TableViewTableWinSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewTableWinSaveInfo.Pos">
            <summary>Information about the position of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewTableWinSaveInfo.Caption">
            <summary>Table name.</summary>
        </member>
        <member name="T:Qlik.Engine.TableViewBroomPointSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewBroomPointSaveInfo.Pos">
            <summary>Information about the position of the broom point.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewBroomPointSaveInfo.Table">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewBroomPointSaveInfo.Fields">
            <summary>List of fields in the table.</summary>
        </member>
        <member name="T:Qlik.Engine.TableViewConnectionPointSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.TableViewConnectionPointSaveInfo.Pos">
            <summary>Information about the position of the connection point.</summary>
        </member>
        <member name="P:Qlik.Engine.TableViewConnectionPointSaveInfo.Fields">
            <summary>List of the fields in the table.</summary>
        </member>
        <member name="T:Qlik.Engine.IDerivedFieldsInTableData">
            <summary />
        </member>
        <member name="P:Qlik.Engine.IDerivedFieldsInTableData.DefinitionName">
            <summary>Name of the derived definition.</summary>
        </member>
        <member name="P:Qlik.Engine.IDerivedFieldsInTableData.Tags">
            <summary>List of tags.</summary>
        </member>
        <member name="P:Qlik.Engine.IDerivedFieldsInTableData.Active">
            <summary>Is set to true is the derived field is in use.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableViewTableWinSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewTableWinSaveInfo.Pos">
            <summary>Information about the position of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewTableWinSaveInfo.Caption">
            <summary>Table name.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableViewBroomPointSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewBroomPointSaveInfo.Pos">
            <summary>Information about the position of the broom point.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewBroomPointSaveInfo.Table">
            <summary>Name of the table.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewBroomPointSaveInfo.Fields">
            <summary>List of fields in the table.</summary>
        </member>
        <member name="T:Qlik.Engine.ITableViewConnectionPointSaveInfo">
            <summary />
        </member>
        <member name="P:Qlik.Engine.ITableViewConnectionPointSaveInfo.Pos">
            <summary>Information about the position of the connection point.</summary>
        </member>
        <member name="P:Qlik.Engine.ITableViewConnectionPointSaveInfo.Fields">
            <summary>List of the fields in the table.</summary>
        </member>
    </members>
</doc>