Class AlternateId
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents an Id expressed in a specific format.
public class AlternateId : AlternateIdBase
- Inheritance
-
AlternateId
- Inherited Members
Constructors
AlternateId()
Initializes a new instance of the AlternateId class.
public AlternateId()
AlternateId(IdFormat, string, string)
Initializes a new instance of the AlternateId class.
public AlternateId(IdFormat format, string id, string mailbox)
Parameters
formatIdFormatThe format the Id is expressed in.
idstringThe Id.
mailboxstringThe SMTP address of the mailbox that the Id belongs to.
AlternateId(IdFormat, string, string, bool)
Initializes a new instance of the AlternateId class.
public AlternateId(IdFormat format, string id, string mailbox, bool isArchive)
Parameters
formatIdFormatThe format the Id is expressed in.
idstringThe Id.
mailboxstringThe SMTP address of the mailbox that the Id belongs to.
isArchiveboolPrimary (false) or archive (true) mailbox.
Properties
IsArchive
Gets or sets the type (primary or archive) mailbox to which the Id belongs.
public bool IsArchive { get; set; }
Property Value
Mailbox
Gets or sets the mailbox to which the Id belongs.
public string Mailbox { get; set; }
Property Value
UniqueId
Gets or sets the Id.
public string UniqueId { get; set; }