Class CustomerServiceStartup
This carrier contains various data needed by Service for startup. Do not use this API, as it is for internal use and might change without notice
Carrier object for CustomerServiceStartup. Services for the CustomerServiceStartup Carrier is available from the CustomerService Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class CustomerServiceStartup : Carrier
Constructors
CustomerServiceStartup()
Default constructor
Declaration
public CustomerServiceStartup()
See Also
Properties
RecaptchaSiteKey
A global recaptcha site key, used with the google recaptcha component. This value is taken from the web.config file
Declaration
[DataMember]
public virtual string RecaptchaSiteKey { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
SelectedPreferences
An array of selected preferences needed by Service
Declaration
[DataMember]
public virtual Preference[] SelectedPreferences { get; set; }
Property Value
Type | Description |
---|---|
Preference[] |
See Also
TZOffset
The offset in minutes compared with UTC, calculated for DateTime.Now
Declaration
[DataMember]
public virtual int TZOffset { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
TimezoneEnabled
Is timezone enabled
Declaration
[DataMember]
public virtual bool TimezoneEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
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. |