Class AttributeInfo
Defines the attribute info
Inheritance
System.Object
AttributeInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Quark.CMSAdapters.Core.Data
Assembly: Quark.CMSAdapters.Core.dll
Syntax
public class AttributeInfo
Constructors
AttributeInfo()
Initializes a new instance of the AttributeInfo class.
Declaration
public AttributeInfo()
AttributeInfo(String, List<String>, String, String)
Initializes a new instance of the AttributeInfo class.
Declaration
public AttributeInfo(string name, List<string> values, string format, string isInvariantCultureFormat)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Collections.Generic.List<System.String> | values | The values. |
System.String | format | The format. |
System.String | isInvariantCultureFormat | Whether date time format is culture independent. |
Properties
Format
Gets or sets the format for date/time values.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
System.String | The format. |
FormatProvider
Gets or sets the format provider for date/time values.
Declaration
public IFormatProvider FormatProvider { get; set; }
Property Value
Type | Description |
---|---|
System.IFormatProvider | The format provider. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Values
Gets or sets the values.
Declaration
public List<string> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The values. |