Tip
Use the extension method
AsITypedPropertyT(DynamicProperty)
to cast a DynamicProperty to an ITypedPropertyT
instance.
public interface ITypedProperty<T> : IDynamicProperty
Public Interface ITypedProperty(Of T)
Inherits IDynamicProperty
generic<typename T>
public interface class ITypedProperty : IDynamicProperty
type ITypedProperty<'T> =
interface
interface IDynamicProperty
end
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. |