ICustomDataSet.InitNew Method
Called when the CustomDataSetProxy is initialized, or when a custom dataset instance is attached to a CustomDataSetProxy.
InitNew(CustomDataSetContext context)
Called when the CustomDataSetProxy is initialized, or when a custom dataset instance is attached to a CustomDataSetProxy.Syntax
public void InitNew (
CustomDataSetContext context
)
Parameters
Remarks
If the custom dataset instance is created by a CustomDataSetProxy (i.e. if CustomDataSetProxy.ClassName etc is specified), the proxy will call this method once before any other method or property is called. This will happen when the proxy is initialized; either implicitly when the proxy is accessed, or explicitly if the application calls DataSet.Initialize.
If a CustomDataSetProxy is created in code, and a custom dataset instance is passed to the constructor, this method will also be called when the proxy is initialized.
If a custom object instance created by the application is attached to an existing CustomDataSetProxy through the CustomDataSetProxy.CustomDataSet property, the proxy will call this method immediately.
The custom dataset should save a reference to the context object for use in other methods.
Platforms
Windows, Linux, Android