DataSet.Initialize Method
Initializes the dataset.
Initialize()
Initializes the dataset.Syntax
public void Initialize ()
Remarks
This method will perform any necessary initialization, like verifying/creating dataset index files, and reserving space in the global dataset cache.
If the dataset needs to be indexed, this call will block until the index is created. Note that Runtime.StatusChanged events will be fired repeatedly to report progress while the index is being created.
If an error occurs, this method will throw an exception, unless the SuppressInitializationErrors property is True. In that case, the method will return normally, and the dataset will appear to function normally, but it will never return any features.
Calling this method directly is not required, the dataset will be automatically initialized the first time it is used, typically when the view is first updated. Calling this method more than once has no effect, and is harmless.
Example
// Initialize the DataSet
public static void InitializeDataSet(DataSet dataSet)
{
// This will perform any necessary initialization,
// like verifying/creating dataset index files,
// and reserving space in the global dataset cache.
dataSet.Initialize();
}
Platforms
Windows, Linux, Android