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