DataAttributeBaseTObjectGetInvariantStringAccessor Method |
Gets the text value accessor or null if the attribute does not support it.
The text value represents the values for import/export to text files or streams.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic virtual IValueAccessor<string> GetInvariantStringAccessor()
Public Overridable Function GetInvariantStringAccessor As IValueAccessor(Of String)
public:
virtual IValueAccessor<String^>^ GetInvariantStringAccessor()
abstract GetInvariantStringAccessor : unit -> IValueAccessor<string>
override GetInvariantStringAccessor : unit -> IValueAccessor<string>
Return Value
Type:
IValueAccessorString
The text value accessor.
Implements
IDataAttributeGetInvariantStringAccessor
Remarks
Text values are stored as constants of the type of the attribute.
The intention is to have a culture-neutral way of storing and transporting the values in
human-readable way in text files, streams, etc.
For example, strings might be enclosed in double quotation marks,
dates might be formatted in culture-neutral way (in ISO8601 format), etc.
See Also