Table of Contents

Class SqlExtendedProperty

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents a SQL extended property.

public class SqlExtendedProperty : BaseTypeSection, IComparable<SqlExtendedProperty>
Inheritance
SqlExtendedProperty
Implements

Constructors

SqlExtendedProperty()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlExtendedProperty class.

public SqlExtendedProperty()

SqlExtendedProperty(string, object)

Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlExtendedProperty class.

public SqlExtendedProperty(string name, object value)

Parameters

name string

The name of the property.

value object

The value of the property.

Properties

DisplayValue

Gets the display value of the property.

public string DisplayValue { get; set; }

Property Value

string

Name

Gets or sets the name of the extended property.

public string Name { get; set; }

Property Value

string

Value

Gets or sets the value of the extended property.

public object Value { get; set; }

Property Value

object

ValueTypeDisplayName

Gets the display name of the value type.

public string ValueTypeDisplayName { get; set; }

Property Value

string

Methods

Clone()

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

public SqlExtendedProperty Clone()

Returns

SqlExtendedProperty

A CENTREL.XIA.Configuration.Types.SqlExtendedProperty.

CompareTo(SqlExtendedProperty)

Compares two CENTREL.XIA.Configuration.Types.SqlExtendedProperty objects to allow sorting alphabetically by name.

public int CompareTo(SqlExtendedProperty other)

Parameters

other SqlExtendedProperty

The CENTREL.XIA.Configuration.Types.SqlExtendedProperty to compare to.

Returns

int

The sort order of the two CENTREL.XIA.Configuration.Types.SqlExtendedProperty objects.

ToString()

Returns the name of the extended property.

public override string ToString()

Returns

string

The name of the extended property.