Table of Contents

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 DateTime

The 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 Guid

The unique identifier of the custom attribute.

displayName string

The display name of the custom attribute.

value DateTime

The value to assign.

Properties

DisplayValue

Gets the display value of the custom attribute.

public override string DisplayValue { get; set; }

Property Value

string

HasValue

Gets whether the custom attribute has a value set.

public override bool HasValue { get; }

Property Value

bool

Value

Gets or sets the value of this custom attribute.

public DateTime Value { get; set; }

Property Value

DateTime