Show / Hide Table of Contents

Class Satellite

Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.

Inheritance
object
Satellite
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class Satellite : Carrier
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }

Constructors

Satellite()

Default constructor

Declaration
public Satellite()
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

Properties

Area

Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.

Declaration
public virtual Area Area { get; set; }
Property Value
Type Description
Area
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

Contact

Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.

Declaration
public virtual Contact Contact { get; set; }
Property Value
Type Description
Contact
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

Created

Registered when in UTC.

Declaration
public virtual DateTime Created { get; set; }
Property Value
Type Description
DateTime
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

CreatedBy

Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.

Declaration
public virtual Associate CreatedBy { get; set; }
Property Value
Type Description
Associate
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

LicenseOwners

The restricted and unrestricted module licenses grouped by license owner. These module licenses are either assigned or unassigned to this user

Declaration
public virtual LicenseOwner[] LicenseOwners { get; set; }
Property Value
Type Description
LicenseOwner[]
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

SatelliteId

Primary key

Declaration
public virtual int SatelliteId { get; set; }
Property Value
Type Description
Int32
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

Updated

Last updated when in UTC.

Declaration
public virtual DateTime Updated { get; set; }
Property Value
Type Description
DateTime
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

UpdatedBy

Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.

Declaration
public virtual Associate UpdatedBy { get; set; }
Property Value
Type Description
Associate
Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
String

The carrier contents.

Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

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.

Examples

Get Satellite 123 using the agent:

 using SuperOffice;
 using SuperOffice.CRM.Services;

 using (SoSession mySession = SoSession.Authenticate("user", "pass"))
 {
    var agent = new ReplicationAgent();
    var satellite = agent.GetSatellite( 123 );
 }
See Also
ReplicationAgent
IReplicationAgent

See Also

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