Class Satellite
Carrier object for Satellite. Services for the Satellite Carrier is available from the IReplicationAgent.
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
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
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
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
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
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
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
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
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
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
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 );
}