Class LocalizedText
Carrier object for LocalizedText. Services for the LocalizedText Carrier is available from the List Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class LocalizedText : Carrier
Examples
Get LocalizedText 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new ListAgent();
var localizedText = agent.GetLocalizedText( 123 );
}
Constructors
LocalizedText()
Default constructor
Declaration
public LocalizedText()
See Also
Properties
IsBuiltIn
1 = this row is populated and maintained by SuperOffice
Declaration
[DataMember]
public virtual bool IsBuiltIn { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
LanguageId
Language id as LCID value
Declaration
[DataMember]
public virtual int LanguageId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
LocalizedTextId
Primary key
Declaration
[DataMember]
public virtual int LocalizedTextId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
ResourceId
Resource ID
Declaration
[DataMember]
public virtual int ResourceId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Text
The text string itself
Declaration
[DataMember]
public virtual string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Type
The type of the text string, e.g. Field label, Udef label, etc.
Declaration
[DataMember]
public virtual LocalizedTextType Type { get; set; }
Property Value
| Type | Description |
|---|---|
| LocalizedTextType |
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. |