Show / Hide Table of Contents

Class ForeignAppEntity

Carrier object for ForeignAppEntity. Services for the ForeignAppEntity Carrier is available from the ForeignSystem Agent.

Inheritance
object
ForeignAppEntity
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class ForeignAppEntity : Carrier
Examples

Get ForeignAppEntity 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new ForeignSystemAgent();
   var foreignAppEntity = agent.GetForeignAppEntity( 123 );
}

Find all ForeignAppEntity, get related items using archive agent.

var archive = new ArchiveAgent();
var rows = archive.GetArchiveListByColumns2("ForeignKeys", "...", null, "getAllRows eq 1", null, 0, 100 );

Constructors

ForeignAppEntity()

Default constructor

Declaration
public ForeignAppEntity()
See Also
IForeignSystemAgent

Properties

CreatedBy

The person that created the foreign application.

Declaration
[DataMember]
public virtual Associate CreatedBy { get; set; }
Property Value
Type Description
Associate
See Also
IForeignSystemAgent

CreatedDate

Registered when in UTC.

Declaration
[DataMember]
public virtual DateTime CreatedDate { get; set; }
Property Value
Type Description
DateTime
See Also
IForeignSystemAgent

Devices

The devices that belong to this foreign app.

Declaration
[DataMember]
public virtual ForeignDevice[] Devices { get; set; }
Property Value
Type Description
ForeignDevice[]
See Also
IForeignSystemAgent

ForeignAppId

Primary key

Declaration
[DataMember]
public virtual int ForeignAppId { get; set; }
Property Value
Type Description
int
See Also
IForeignSystemAgent

Name

Name of foreign application

Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type Description
string
See Also
IForeignSystemAgent

UpdatedBy

The person that last updated this foreign application.

Declaration
[DataMember]
public virtual Associate UpdatedBy { get; set; }
Property Value
Type Description
Associate
See Also
IForeignSystemAgent

UpdatedDate

Last updated when in UTC.

Declaration
[DataMember]
public virtual DateTime UpdatedDate { get; set; }
Property Value
Type Description
DateTime
See Also
IForeignSystemAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IForeignSystemAgent

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.

See Also
IForeignSystemAgent

See Also

IForeignSystemAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top