Class CustomAttributeString
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a string based custom attribute.
public class CustomAttributeString : CustomAttributeBase
- Inheritance
-
CustomAttributeString
- Inherited Members
Constructors
CustomAttributeString()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeString class.
public CustomAttributeString()
CustomAttributeString(Guid, string, string)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeString class with the specified value.
public CustomAttributeString(Guid identifier, string displayName, string value)
Parameters
identifier
GuidThe unique identifier of the custom attribute.
displayName
stringThe display name of the custom attribute.
value
stringThe value to assign.
CustomAttributeString(string)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeString class with the specified value.
public CustomAttributeString(string value)
Parameters
value
stringThe value to assign.
Properties
DisplayValue
Gets the display value of the custom attribute.
public override string DisplayValue { get; set; }
Property Value
HasValue
Gets whether the custom attribute has a value set.
public override bool HasValue { get; }
Property Value
Value
Gets or sets the value of this custom attribute.
public string Value { get; set; }
Property Value
Methods
Clone()
Returns a CENTREL.XIA.Configuration.Types.CustomAttributeString cloned from this object.
public CustomAttributeString Clone()
Returns
- CustomAttributeString
A CENTREL.XIA.Configuration.Types.CustomAttributeString.