Class CRMScriptSourceMap
Object for returning source-map info when validating or executing a CRMScript
Carrier object for CRMScriptSourceMap. Services for the CRMScriptSourceMap Carrier is available from the CRMScript Agent.Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.9.0.0")]
public class CRMScriptSourceMap : Carrier
Constructors
CRMScriptSourceMap()
Default constructor
Declaration
public CRMScriptSourceMap()
See Also
Properties
Delta
The delta between global line number and a line number inside this range
Declaration
[DataMember]
public virtual int Delta { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
IncludeId
The includeId for this entry
Declaration
[DataMember]
public virtual string IncludeId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
IncludedFrom
The list of IncludeId:linenum that leads to this source
Declaration
[DataMember]
public virtual string[] IncludedFrom { get; set; }
Property Value
| Type | Description |
|---|---|
| string[] |
See Also
LineNumberFrom
The 1-based start line (inclusive) of this entry
Declaration
[DataMember]
public virtual int LineNumberFrom { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
LineNumberTo
The 1-based end line (inclusive) of this entry
Declaration
[DataMember]
public virtual int LineNumberTo { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
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. |