NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CodeMethodInvokeStatement Constructor (CodeExpression, String, CodeExpression[])

Initializes a new instance of CodeMethodInvokeStatement using the specified target object, method name, and parameters.

[Visual Basic]
Overloads Public Sub New( _
   ByVal targetObject As CodeExpression, _
   ByVal methodName As String, _
   ByVal parameters() As CodeExpression _
)
[C#]
public CodeMethodInvokeStatement(
   CodeExpression targetObject,
   string methodName,
   CodeExpression[] parameters
);
[C++]
public: CodeMethodInvokeStatement(
   CodeExpression* targetObject,
   String* methodName,
   CodeExpression* parameters[]
);
[JScript]
public function CodeMethodInvokeStatement(
   targetObject : CodeExpression,
   methodName : String,
   parameters : CodeExpression[]
);

Parameters

targetObject
The target object to call the method on.
methodName
[To be supplied.]
parameters
[To be supplied.]

See Also

CodeMethodInvokeStatement Class | CodeMethodInvokeStatement Members | System.CodeDOM Namespace | CodeMethodInvokeStatement Constructor Overload List