ITypedPropertyT Interface

Interface for typed DynamicProperty instances.

Definition

Namespace: FolkerKinzel.CsvTools.Mappings
Assembly: FolkerKinzel.CsvTools.Mappings (in FolkerKinzel.CsvTools.Mappings.dll) Version: 1.1.0+1263e8243dc2cd78095f678f813d7d9c52ea4315
C#
public interface ITypedProperty<T> : IDynamicProperty
Implements
IDynamicProperty

Type Parameters

T
The type of the dynamic properties value.

Remarks

Properties

Converter An object implementing ITypeConverterT that performs the type conversion.
CsvColumnIndexes Gets the column indexes of the CSV file that the DynamicProperty accesses.
(Inherited from IDynamicProperty)
CsvColumnNames Gets the column names of the columns of the CSV file that the DynamicProperty accesses.
(Inherited from IDynamicProperty)
DefaultValue Gets the value that the ITypedPropertyT returns if parsing fails.
PropertyName Identifier of the dynamic property.
(Inherited from IDynamicProperty)
Record The CsvRecord object used to access the CSV file.
(Inherited from IDynamicProperty)
Value Allows to get and set the value of the referenced field in the CSV file without having to use a dynamic property.

See Also