DSPResourceQueryProvider InvokeServiceOperation Method
Invokes the specified service operation.

Namespace: HotDocs.Sdk.DataServices
Assembly: HotDocs.Sdk.DataServices (in HotDocs.Sdk.DataServices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public Object InvokeServiceOperation(
	ServiceOperation serviceOperation,
	Object[] parameters
)

Parameters

serviceOperation
Type: OnlineSystem.Data.Services.Providers ServiceOperation
The service operation to invoke.
parameters
Type:  OnlineSystem Object 
The parameters for the service operation. Their types will match the types of the declared parameters for the service operation.

Return Value

Type: OnlineObject
The result of the service operation. If the service operation is declared to return void, this method should return null. Otherwise the method should return object of the type declared as the return type for the service operation.

Implements

OnlineIDataServiceQueryProvider InvokeServiceOperation(ServiceOperation,  Object )
See Also