OofReply.Implicit Operator

Definition

Overloads

Implicit(OofReply to String)

Defines an implicit conversion between an OofReply object and a string.

Implicit(String to OofReply)

Defines an implicit conversion between a string and an OofReply object.

Implicit(OofReply to String)

Defines an implicit conversion between an OofReply object and a string.

public:
 static operator System::String ^(Microsoft::Exchange::WebServices::Data::OofReply ^ oofReply);
public static implicit operator string (Microsoft.Exchange.WebServices.Data.OofReply oofReply);

Parameters

oofReply
OofReply

The OofReply object to convert into a string.

Returns

A string that contains the message of the specified OofReply object.

Applies to

Implicit(String to OofReply)

Defines an implicit conversion between a string and an OofReply object.

public:
 static operator Microsoft::Exchange::WebServices::Data::OofReply ^(System::String ^ message);
public static implicit operator Microsoft.Exchange.WebServices.Data.OofReply (string message);
Public Shared Widening Operator CType (message As String) As OofReply

Parameters

message
String

The message to convert into an OofReply object.

Returns

An OofReply object initialized with the specified message.

Applies to