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;
true if the statement was parsed, false if it was ignored.
ComponentModelPersister Class | ComponentModelPersister Members | System.ComponentModel.Design Namespace