ServerExtension.Check Method

Check if the extension can run
Public MustOverride Function Check( _ 
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 Check( 
EntityID user_id
string custom_data
IDatabase database 
)
This language is not supported or no code example is available.
public:  
virtual ExtensionResponse^ Check( 
EntityID^ user_id
String^ custom_data
IDatabase^ database 
) abstract
This language is not supported or no code example is available.
public abstract function Check( 
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 checking

.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