Class EmailTypeFieldInfo
Strongly typed FieldInfo derivative, for fields that represent the enum EmailType in the database
Inheritance
System.Object
EmailTypeFieldInfo
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class EmailTypeFieldInfo : TypedFieldInfoBase<EmailType>, ICloneable, IEquatable<FieldInfo>
Constructors
EmailTypeFieldInfo(TableInfo, FieldDataType, String)
Declaration
public EmailTypeFieldInfo(TableInfo parent, FieldDataType dataType, string name)
Parameters
Type | Name | Description |
---|---|---|
TableInfo | parent | |
FieldDataType | dataType | |
System.String | name |
Properties
Item[ISoDataRecord]
Declaration
public EmailType this[ISoDataRecord record] { get; }
Parameters
Type | Name | Description |
---|---|---|
ISoDataRecord | record |
Property Value
Type | Description |
---|---|
EmailType |
Methods
Clone()
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System.Object |
Overrides
GetValue(ISoDataRecord)
Declaration
public EmailType GetValue(ISoDataRecord record)
Parameters
Type | Name | Description |
---|---|---|
ISoDataRecord | record |
Returns
Type | Description |
---|---|
EmailType |
Implements
System.ICloneable
System.IEquatable<T>
Extension Methods
EnumUtil.MapEnums<From, To>(From)