ClientActionInvokeMethod constructor
Initializes a new instance of the ClientActionInvokeMethod class with the specified client object, the invoked method name and the parameter collection to the method. This member is reserved for internal use and is not intended to be used directly from your code.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Sub New ( _
obj As ClientObject, _
methodName As String, _
parameters As Object() _
)
'Usage
Dim obj As ClientObject
Dim methodName As String
Dim parameters As Object()
Dim instance As New ClientActionInvokeMethod(obj, methodName, _
parameters)
public ClientActionInvokeMethod(
ClientObject obj,
string methodName,
Object[] parameters
)
Parameters
obj
Type: Microsoft.SharePoint.Client.ClientObjectThe ClientObject object on which the specified method is invoked.
methodName
Type: System.StringThe String object that represents the name of the invoked method.
parameters
Type: []The [] object that represents the parameter collection to the invoked method.
See also
Reference
ClientActionInvokeMethod class