Class RecipientStatistics
Class representing a RecipientStatistics carrier used for counting attributes on selection members.
Carrier object for RecipientStatistics.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class RecipientStatistics : Carrier
Constructors
RecipientStatistics()
Default constructor
Declaration
public RecipientStatistics()
Properties
NoAddresses
Number of members with an invalid address.
Declaration
[DataMember]
public virtual int NoAddresses { get; set; }
Property Value
Type | Description |
---|---|
int |
NoFaxOrEmails
Number of members with no fax or email address.
Declaration
[DataMember]
public virtual int NoFaxOrEmails { get; set; }
Property Value
Type | Description |
---|---|
int |
Total
Total number of members.
Declaration
[DataMember]
public virtual int Total { get; set; }
Property Value
Type | Description |
---|---|
int |
ValidEmailAddresses
Number of members with a valid email address.
Declaration
[DataMember]
public virtual int ValidEmailAddresses { get; set; }
Property Value
Type | Description |
---|---|
int |
ValidFaxNumbers
Number of members with a valid fax number.
Declaration
[DataMember]
public virtual int ValidFaxNumbers { get; set; }
Property Value
Type | Description |
---|---|
int |
ValidPostalAddresses
Number of members with a valid postal address.
Declaration
[DataMember]
public virtual int ValidPostalAddresses { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
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. |