MultiColumnTypeConverterTAcceptsNull Property
Gets a value indicating whether the converter accepts
null references as input.
Namespace: FolkerKinzel.CsvTools.Mappings.TypeConvertersAssembly: FolkerKinzel.CsvTools.Mappings (in FolkerKinzel.CsvTools.Mappings.dll) Version: 1.1.0+1263e8243dc2cd78095f678f813d7d9c52ea4315
public abstract bool AcceptsNull { get; }
Public MustOverride ReadOnly Property AcceptsNull As Boolean
Get
public:
virtual property bool AcceptsNull {
bool get () abstract;
}
abstract AcceptsNull : bool with get
Booleantrue if the converter allows
null values as input,
otherwise
false.
ITypeConverterTAcceptsNull This value should be
true for all reference
types and
false for all value types, except
NullableT.
The behavior is equivalent to the behavior of the AllowNullAttribute:
Even if the converters DataType doesn't allow null
values, null will be accepted as input if the AcceptsNull
property is true.