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)

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

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

Parameters

targetObject
The object to invoke the method on.
methodName
[To be supplied.]

See Also

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