Class FieldProperty
Class holding properties like field length, field type about a field in the carrier.
Implements
Namespace: SuperOffice.CRM.Security
Assembly: SoCore.dll
Syntax
public sealed class FieldProperty : Object, ICloneable
Constructors
FieldProperty()
Initializes a blank instance of the FieldProperty class.
Declaration
public FieldProperty()
FieldProperty(FieldRight, Type, Int32, String)
Initializes a new instance of the FieldProperty class.
Declaration
public FieldProperty(FieldRight fieldRight, Type fieldType, int fieldLength, string customFieldType = null)
Parameters
Type | Name | Description |
---|---|---|
FieldRight | fieldRight | The field right. |
Type | fieldType | Type of the field. |
Int32 | fieldLength | Length of the field. |
String | customFieldType | Custom Type of the field. Overrides the fieldType on serialization |
Properties
FieldLength
Class holding properties like field length, field type about a field in the carrier.
Declaration
public int FieldLength { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
FieldRight
Gets the field right.
Declaration
public FieldRight FieldRight { get; }
Property Value
Type | Description |
---|---|
FieldRight | The field right. |
FieldType
Class holding properties like field length, field type about a field in the carrier.
Declaration
public Type FieldType { get; set; }
Property Value
Type | Description |
---|---|
Type |
Methods
Clone()
Class holding properties like field length, field type about a field in the carrier.
Declaration
public object Clone()
Returns
Type | Description |
---|---|
Object |
ToString()
Class holding properties like field length, field type about a field in the carrier.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Implements
Extension Methods
EnumUtil.MapEnums<From, To>(From)