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!

CodeMethodInvokeExpression Constructor (CodeExpression, String)

Initializes a new instance of CodeMethodInvokeExpression using the specified target object and method name.

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

Parameters

targetObject
The object to target.
methodName
[To be supplied.]

See Also

CodeMethodInvokeExpression Class | CodeMethodInvokeExpression Members | System.CodeDOM Namespace | CodeMethodInvokeExpression Constructor Overload List | CodeExpression