Table of Contents

Class OofReply

Namespace
Microsoft.Exchange.WebServices.Data
Assembly
Microsoft.Exchange.WebServices.dll

Represents an Out of Office response.

public sealed class OofReply
Inheritance
OofReply
Inherited Members

Constructors

OofReply()

Initializes a new instance of the OofReply class.

public OofReply()

OofReply(string)

Initializes a new instance of the OofReply class.

public OofReply(string message)

Parameters

message string

The reply message.

Properties

Culture

Gets or sets the culture of the reply.

public string Culture { get; set; }

Property Value

string

Message

Gets or sets the reply message.

public string Message { get; set; }

Property Value

string

Methods

ToString()

Obtains a string representation of the reply.

public override string ToString()

Returns

string

A string containing the reply message.

Operators

implicit operator string(OofReply)

Defines an implicit conversion between OofReply and string.

public static implicit operator string(OofReply oofReply)

Parameters

oofReply OofReply

The OofReply to convert into a string.

Returns

string

A string containing the message of the specified OofReply.

implicit operator OofReply(string)

Defines an implicit conversion between string an OofReply.

public static implicit operator OofReply(string message)

Parameters

message string

The message to convert into OofReply.

Returns

OofReply

An OofReply initialized with the specified message.