|
IniSettingsBaseUseCategoryAttributes Property
|
Gets or sets value that determines whether a
CategoryAttribute applied to a field or property
will be used for the section name.
Namespace: GSF.ConfigurationAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public bool UseCategoryAttributes { get; set; }
Public Property UseCategoryAttributes As Boolean
Get
Set
public:
property bool UseCategoryAttributes {
bool get ();
void set (bool value);
}
member UseCategoryAttributes : bool with get, set
function get_UseCategoryAttributes();
function set_UseCategoryAttributes(value);
View SourceProperty Value
BooleanRemarks
If
UseCategoryAttributes is false, all settings will be placed in section labeled by the
SectionName value; otherwise, if a
CategoryAttribute exists on a field or
property then the member value will serialized into the INI file in a section labeled the same
as the
Category value and if the attribute doesn't exist the member value
will serialized into the section labeled by the
SectionName value.
See Also