Class EntityElement
Generic carrier object for entity elements such as Phone, EntityElement, Url. These elements do not have id and rank. These values are changed on each save, and should not be depended on. When used in a list or array the rank is the ascending list order.
Carrier object for EntityElement.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class EntityElement : Carrier
Constructors
EntityElement()
Default constructor
Declaration
public EntityElement()
Properties
Description
The Element Description
Declaration
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
StrippedValue
The Element FullName. This is a value that can be parsed and used by systems.
Declaration
public virtual string StrippedValue { get; set; }
Property Value
Type | Description |
---|---|
String |
Value
The Element FullName. This is a value that is intended to be shown to the user.
Declaration
public virtual string Value { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |