Table of Contents

Class Query.AfterQueryArgs

Namespace
Dynamicweb.Indexing.Notifications
Assembly
Dynamicweb.Indexing.dll
Provides the information about query after execute.
public class Query.AfterQueryArgs : NotificationArgs
Inheritance
Query.AfterQueryArgs
Inherited Members

Constructors

AfterQueryArgs()

Initializes new instance of the class.
public AfterQueryArgs()

AfterQueryArgs(IQuery, QuerySettings, IQueryResult)

Initializes new instance of the class.
public AfterQueryArgs(IQuery query, QuerySettings settings, IQueryResult result)

Parameters

query IQuery
The query.
settings QuerySettings
The query settings.
result IQueryResult
The query result.

Properties

Query

Gets or sets the query.
public IQuery Query { get; set; }

Property Value

IQuery

Result

Gets or sets the result.
public IQueryResult Result { get; set; }

Property Value

IQueryResult

Settings

Gets or sets the settings.
public QuerySettings Settings { get; set; }

Property Value

QuerySettings
To top