MultilanguageStringDataAttributeTObjectGetInvariantStringAccessor Method |
Gets the culture-neutral 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.EnterpriseOne.Model.Core
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic override IValueAccessor<string> GetInvariantStringAccessor()
Public Overrides Function GetInvariantStringAccessor As IValueAccessor(Of String)
public:
virtual IValueAccessor<String^>^ GetInvariantStringAccessor() override
abstract GetInvariantStringAccessor : unit -> IValueAccessor<string>
override GetInvariantStringAccessor : unit -> IValueAccessor<string>
Return Value
Type:
IValueAccessorString
The text value accessor.
Implements
IDataAttributeGetInvariantStringAccessorIDataAttributeGetInvariantStringAccessor
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