ICustomDataType

Interface

Visual Basic

Public Interface ICustomDataType

C#

public interface ICustomDataType

Purpose

Interface for custom datatypes.

Remarks

Custom datatype classes must implement this interface. However, this interface does not define any contract. Merely declaring that your datatype class implements this interface is sufficient; for example:

class myDatatypeClass : ICustomDataType
{
 ...
}

See Also

Message.RegisterCustomDataType

ICustomDataTypeAdapter