Skip to main content

Class Link

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for Link. Links two entities (contacts/projects/sales/URLs) together.

Inheritance

objectCarrierLink

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get Link 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ListAgent(configuration);
var link = agent.GetLink( 123 );

Constructors

Default constructor - defaults any enum props to 0.

Properties

Description

Link description.

Property Value

string

EntityName

Name of the entity the link points to (The destination/target entity)

Property Value

string

ExtraInfo

Extrainfo for link. Use for information that does not have a primary key

Property Value

string

Id

Id of the entity the link points to (The destination/target entity primary key)

Property Value

int

LinkId

Primary key

Property Value

int

See Also

ListAgent