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
format
IdFormatThe format the Id is expressed in.
id
stringThe Id.
mailbox
stringThe 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
format
IdFormatThe format the Id is expressed in.
id
stringThe Id.
mailbox
stringThe SMTP address of the mailbox that the Id belongs to.
isArchive
boolPrimary (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; }