Table of Contents

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 IdFormat

The format the Id is expressed in.

id string

The Id.

mailbox string

The 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 IdFormat

The format the Id is expressed in.

id string

The Id.

mailbox string

The SMTP address of the mailbox that the Id belongs to.

isArchive bool

Primary (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

bool

Mailbox

Gets or sets the mailbox to which the Id belongs.

public string Mailbox { get; set; }

Property Value

string

UniqueId

Gets or sets the Id.

public string UniqueId { get; set; }

Property Value

string