Class CustomAttributeDateTime
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a DateTime based custom attribute.
public class CustomAttributeDateTime : CustomAttributeBase
- Inheritance
-
CustomAttributeDateTime
- Inherited Members
Constructors
CustomAttributeDateTime()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeDateTime class.
public CustomAttributeDateTime()
CustomAttributeDateTime(DateTime)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeDateTime class with the specified value.
public CustomAttributeDateTime(DateTime value)
Parameters
value
DateTimeThe value to assign.
CustomAttributeDateTime(Guid, string, DateTime)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeDateTime class with the specified value.
public CustomAttributeDateTime(Guid identifier, string displayName, DateTime value)
Parameters
identifier
GuidThe unique identifier of the custom attribute.
displayName
stringThe display name of the custom attribute.
value
DateTimeThe 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 DateTime Value { get; set; }