ClientActionInvokeStaticMethod constructor
Initializes a new instance of the ClientActionInvokeStaticMethod class with the specified client type ID, 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 ( _
context As ClientRuntimeContext, _
typeId As String, _
methodName As String, _
parameters As Object() _
)
'Usage
Dim context As ClientRuntimeContext
Dim typeId As String
Dim methodName As String
Dim parameters As Object()
Dim instance As New ClientActionInvokeStaticMethod(context, _
typeId, methodName, parameters)
public ClientActionInvokeStaticMethod(
ClientRuntimeContext context,
string typeId,
string methodName,
Object[] parameters
)
Parameters
context
Type: Microsoft.SharePoint.Client.ClientRuntimeContextThe runtime context.
typeId
Type: System.StringThe String object that represents the ID of the client type.
methodName
Type: System.StringThe String object that represents the name of the invoked method.
parameters
Type: []The [T:System.Object[])] object that represents the parameter collection to the invoked method.
See also
Reference
ClientActionInvokeStaticMethod class