DataSourceCommandCreateCallRemoteMethodCommand Method  | 
 
            Creates a call remote method command. The 
AdditionalData property contains the method name
            and the arguments as a comma separated list.
            
 
    Namespace: 
   Aloe.SystemFrameworks.Domain.DataAccess
    Assembly:
   Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static DataSourceCommand CreateCallRemoteMethodCommand(
	string transactionName,
	string tableName,
	string methodName,
	params string[] args
)
Public Shared Function CreateCallRemoteMethodCommand ( 
	transactionName As String,
	tableName As String,
	methodName As String,
	ParamArray args As String()
) As DataSourceCommand
public:
static DataSourceCommand^ CreateCallRemoteMethodCommand(
	String^ transactionName, 
	String^ tableName, 
	String^ methodName, 
	... array<String^>^ args
)
static member CreateCallRemoteMethodCommand : 
        transactionName : string * 
        tableName : string * 
        methodName : string * 
        args : string[] -> DataSourceCommand 
Parameters
- transactionName
 - Type: SystemString
Name of the transaction. - tableName
 - Type: SystemString
Name of the table. - methodName
 - Type: SystemString
Name of the method. - args
 - Type: SystemString
The arguments. 
Return Value
Type: 
DataSourceCommand
See Also