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.AppendInitMethodStatements

Provides a way for subclasses to append methods to the initMethod function. The base.AppendInitMethodStatements method should be called to do this.

[Visual Basic]
Overridable Protected Sub AppendInitMethodStatements( _
   ByVal initForm As ICodeMethod, _
   ByVal statements As ObjectList _
)
[C#]
protected virtual void AppendInitMethodStatements(
   ICodeMethod initForm,
   ObjectList statements
);
[C++]
protected: virtual void AppendInitMethodStatements(
   ICodeMethod* initForm,
   ObjectList* statements
);
[JScript]
protected function AppendInitMethodStatements(
   initForm : ICodeMethod,
   statements : ObjectList
);

Parameters

initForm
The method being generated.
statements
A list of statements that will be added to the method.

See Also

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