ServerExtension.Query Method

Query in some manner - which means run the query now, rather than on the queue Should only be used for short querying operations
Public MustOverride Function Query( _ 
ByVal user_id As EntityID, _ 
ByVal custom_data As String, _ 
ByVal database As IDatabase
) As ExtensionResponse
This language is not supported or no code example is available.
public abstract ExtensionResponse Query( 
EntityID user_id
string custom_data
IDatabase database 
)
This language is not supported or no code example is available.
public:  
virtual ExtensionResponse^ Query( 
EntityID^ user_id
String^ custom_data
IDatabase^ database 
) abstract
This language is not supported or no code example is available.
public abstract function Query( 
user_id : EntityID
custom_data : String
database : IDatabase 
) : ExtensionResponse;
This language is not supported or no code example is available.

Parameters

user_id
EntityID

the user executing the command

custom_data
string

the custom data

database
IDatabase

the database to use

Return Value

ExtensionResponse

the db object to use

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition