IRgListHandlerExtensionsCallCustomFunctionAsync Method

Note: This API is now obsolete.

Definition

Namespace: Recrovit.RecroGridFramework.Client.Handlers
Assembly: Recrovit.RecroGridFramework.Client (in Recrovit.RecroGridFramework.Client.dll) Version: 8.16.0.10131
C#
[ObsoleteAttribute("Use CallCustomFunctionAsync(RgfCustomFunctionContext request) instead")]
public static Task<RgfResult<RgfCustomFunctionResult>?> CallCustomFunctionAsync(
	this IRgListHandler handler,
	string functionName,
	bool requireQueryParams = false,
	Dictionary<string, Object>? customParams = null,
	RgfEntityKey? entityKey = null
)

Parameters

handler  IRgListHandler
 
functionName  String
 
requireQueryParams  Boolean  (Optional)
 
customParams  DictionaryString, Object  (Optional)
 
entityKey  RgfEntityKey  (Optional)
 

Return Value

TaskRgfResultRgfCustomFunctionResult

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IRgListHandler. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also