Class ConfigItem
Inheritance
System.Object
ConfigItem
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()
Assembly: fcSDK.dll
Syntax
public abstract class ConfigItem : DataObject, IDataObject
Constructors
ConfigItem(DataRow)
Declaration
protected ConfigItem(DataRow row)
Parameters
Type |
Name |
Description |
System.Data.DataRow |
row |
|
ConfigItem(Object[])
Declaration
protected ConfigItem(object[] fieldData)
Parameters
Type |
Name |
Description |
System.Object[] |
fieldData |
|
Properties
DateValue
Declaration
public DateTime DateValue { get; }
Property Value
Type |
Description |
System.DateTime |
|
DecimalValue
Declaration
public decimal DecimalValue { get; }
Property Value
Type |
Description |
System.Decimal |
|
Description
Declaration
public string Description { get; }
Property Value
Type |
Description |
System.String |
|
DoubleValue
Declaration
public double DoubleValue { get; }
Property Value
Type |
Description |
System.Double |
|
IntegerValue
Declaration
public int IntegerValue { get; }
Property Value
Type |
Description |
System.Int32 |
|
LongValue
Declaration
public long LongValue { get; }
Property Value
Type |
Description |
System.Int64 |
|
Name
Declaration
public string Name { get; }
Property Value
Type |
Description |
System.String |
|
Scope
Declaration
public ConfigItemScope Scope { get; }
Property Value
StringValue
Declaration
public string StringValue { get; }
Property Value
Type |
Description |
System.String |
|
ValueType
Declaration
public ConfigItemValueType ValueType { get; }
Property Value
ValueTypeRaw
Declaration
public int ValueTypeRaw { get; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
SetDateVal(DateTime)
Declaration
protected void SetDateVal(DateTime value)
Parameters
Type |
Name |
Description |
System.DateTime |
value |
|
SetDblVal(Double)
Declaration
protected void SetDblVal(double value)
Parameters
Type |
Name |
Description |
System.Double |
value |
|
SetDecVal(Decimal)
Declaration
protected void SetDecVal(decimal value)
Parameters
Type |
Name |
Description |
System.Decimal |
value |
|
SetDescription(String)
Declaration
protected void SetDescription(string value)
Parameters
Type |
Name |
Description |
System.String |
value |
|
SetIntVal(Int32)
Declaration
protected void SetIntVal(int value)
Parameters
Type |
Name |
Description |
System.Int32 |
value |
|
SetLongVal(Int64)
Declaration
protected void SetLongVal(long value)
Parameters
Type |
Name |
Description |
System.Int64 |
value |
|
SetName(String)
Declaration
protected void SetName(string value)
Parameters
Type |
Name |
Description |
System.String |
value |
|
SetScope(ConfigItemScope)
Declaration
protected void SetScope(ConfigItemScope value)
Parameters
SetStrVal(String)
Declaration
protected void SetStrVal(string value)
Parameters
Type |
Name |
Description |
System.String |
value |
|
SetValueType(Int32)
Declaration
protected void SetValueType(int value)
Parameters
Type |
Name |
Description |
System.Int32 |
value |
|
Implements