CustomDataSetProxy.ClassName Property
Gets the name of the class implementing the custom dataset.
Syntax
public System.String ClassName { get; }
Property Value
Default: ""
The name of the class implementing the custom dataset.
Remarks
For a .NET or Java custom dataset, this is the name (including namespace or package name) of the class implementing the custom dataset.
For a C++ custom dataset, this is only a symbolic name passed to a factory function that should create the custom dataset instance. For this to work, a C++ library implementing one or more custom datasets must export a function with the following name and signature:
extern "C" __declspec(dllexport) ICustomDataSet* CreateCppCustomDataSet(const char* name);
The function should create an instance of the custom dataset. The name parameter is the value of the ClassName property of the proxy. This makes it possible to implement several different custom datasets in the same library, and use this parameter to instantiate the correct class.
Platforms
Windows, Linux, Android