Show / Hide Table of Contents

Class ExtAppEntity

The ext app entity contains information on an external application

Carrier object for ExtAppEntity. Services for the ExtAppEntity Carrier is available from the List Agent.
Inheritance
object
ExtAppEntity
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class ExtAppEntity : Carrier
Examples

Get ExtAppEntity 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new ListAgent();
   var extAppEntity = agent.GetExtAppEntity( 123 );
}

Constructors

ExtAppEntity()

Default constructor

Declaration
public ExtAppEntity()
See Also
IListAgent

Properties

Deleted

True if the application is marked as deleted

Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ExecuteOnEvent

Events that cause automatic execution of this app

Declaration
[DataMember]
public virtual ExecuteOnEvent ExecuteOnEvent { get; set; }
Property Value
Type Description
ExecuteOnEvent
See Also
IListAgent

ExtAppId

The identity of the external app

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

Filename

Filename of the programfile

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

Icon

The id of the icon of the external app

Declaration
[DataMember]
public virtual short Icon { get; set; }
Property Value
Type Description
short
See Also
IListAgent

Name

The name of the web panel

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

OnCentral

Is the application visible when user is on central database

Declaration
[DataMember]
public virtual bool OnCentral { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnSalesMarketingPocket

Is the webpanel visible when user is on pocket client

Declaration
[DataMember]
public virtual bool OnSalesMarketingPocket { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnSatellite

Is the application visible when user is on a satellite

Declaration
[DataMember]
public virtual bool OnSatellite { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnTravel

Is the application visible when user is on travel

Declaration
[DataMember]
public virtual bool OnTravel { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

Parameters

<template variable> <other template variable>

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

Path

Path where the programfile is located; if empty, PATH is used

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

Rank

The rank of the application

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

ShowInAddressBar

Does the webpanel have an address bar

Declaration
[DataMember]
public virtual bool ShowInAddressBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInMenuBar

Does the application have a menu bar

Declaration
[DataMember]
public virtual bool ShowInMenuBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInStatusBar

Does the webpanel have a status bar

Declaration
[DataMember]
public virtual bool ShowInStatusBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInToolBar

Does the webpanel have a toolbar

Declaration
[DataMember]
public virtual bool ShowInToolBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowState

The application is shown in which state Minimized, Maximized or Restored

Declaration
[DataMember]
public virtual ShowState ShowState { get; set; }
Property Value
Type Description
ShowState
See Also
IListAgent

Tooltip

The tooltip of the web panel

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

VisibleIn

The application is visible in

Declaration
[DataMember]
public virtual Navigation VisibleIn { get; set; }
Property Value
Type Description
Navigation
See Also
IListAgent

WaitToFinish

True if the application shall wait for fininsh event

Declaration
[DataMember]
public virtual bool WaitToFinish { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

Workdir

Directory set to current when loading the application, if different from application's own

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

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IListAgent

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
IListAgent

See Also

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