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