Class EMailFolder
Properties for a mail folder
Carrier object for EMailFolder. Services for the EMailFolder Carrier is available from the EMail 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 EMailFolder : Carrier
Constructors
EMailFolder()
Default constructor
Declaration
public EMailFolder()
See Also
Properties
Delimiter
The character which is used to delimit folder levels on the server
Declaration
[DataMember]
public virtual string Delimiter { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
EmailFolderId
Primary key
Declaration
[DataMember]
public virtual int EmailFolderId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Flags
Flags associated with the folder
Declaration
[DataMember]
public virtual string Flags { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Name
Name of folder
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Subscribed
Indicates if the folder is subscribed to
Declaration
[DataMember]
public virtual bool Subscribed { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
TotalItems
Total number of messages in the folder
Declaration
[DataMember]
public virtual int TotalItems { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
UnreadItems
Number of unread messages in the folder
Declaration
[DataMember]
public virtual int UnreadItems { 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. |