Table of Contents

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 Guid

The unique identifier of the custom attribute.

displayName string

The display name of the custom attribute.

value string

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

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 string Value { get; set; }

Property Value

string

Methods

Clone()

Returns a CENTREL.XIA.Configuration.Types.CustomAttributeString cloned from this object.

public CustomAttributeString Clone()

Returns

CustomAttributeString

A CENTREL.XIA.Configuration.Types.CustomAttributeString.