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!

ComponentModelPersister.ParseInitMethodMethod

Parses a single method invoke inside of the init method. Subclasses should call base.ParseInitMethodMethod(...). You can choose to call super before or after custom parsing, but you should only call it if you want the default parsing to occur.

[Visual Basic]
Overridable Protected Function ParseInitMethodMethod( _
   ByVal methodInvoke As ICodeMethodInvokeStatement _
) As Boolean
[C#]
protected virtual bool ParseInitMethodMethod(
   ICodeMethodInvokeStatement methodInvoke
);
[C++]
protected: virtual bool ParseInitMethodMethod(
   ICodeMethodInvokeStatement* methodInvoke
);
[JScript]
protected function ParseInitMethodMethod(
   methodInvoke : ICodeMethodInvokeStatement
) : Boolean;

Parameters

methodInvoke
statement to parse

Return Value

true if the statement was parsed, false if it was ignored.

See Also

ComponentModelPersister Class | ComponentModelPersister Members | System.ComponentModel.Design Namespace