ServerExtension.Execute Method

Execute the extension - this will be queued
Public MustOverride Function Execute( _ 
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 Execute( 
EntityID user_id
string custom_data
IDatabase database 
)
This language is not supported or no code example is available.
public:  
virtual ExtensionResponse^ Execute( 
EntityID^ user_id
String^ custom_data
IDatabase^ database 
) abstract
This language is not supported or no code example is available.
public abstract function Execute( 
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 id

custom_data
string

the custom data

database
IDatabase

the database to use

Return Value

ExtensionResponse

the respones to executing

.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