Class FencingInfo
Information about entity fencing status, including current count and maximum active entities
Carrier object for FencingInfo. Services for the FencingInfo Carrier is available from the License Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/12.2.0.0")]
public class FencingInfo : Carrier
Constructors
FencingInfo()
Default constructor
Declaration
public FencingInfo()
See Also
Properties
ActiveCount
Number of active entities
Declaration
[DataMember]
public virtual int ActiveCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
HasReachedMaximum
True if the active entity count has reached or exceeded the maximum
Declaration
[DataMember]
public virtual bool HasReachedMaximum { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
IsNearingMaximum
True if the active entity count is approaching the maximum
Declaration
[DataMember]
public virtual bool IsNearingMaximum { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
Maximum
Maximum number of active entities allowed
Declaration
[DataMember]
public virtual int Maximum { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
WarningMessage
Localized warning message to display when nearing or at the maximum
Declaration
[DataMember]
public virtual string WarningMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
WarningTooltip
Localized warning message to display as a tooltip when nearing or at the maximum
Declaration
[DataMember]
public virtual string WarningTooltip { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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. |