OofReply.Implicit 操作员

定义

重载

Implicit(OofReply to String)

定义对象和字符串之间的 OofReply 隐式转换。

Implicit(String to OofReply)

定义字符串和 OofReply 对象之间的隐式转换。

Implicit(OofReply to String)

定义对象和字符串之间的 OofReply 隐式转换。

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

参数

oofReply
OofReply

OofReply 转换为字符串的对象。

返回

包含指定 OofReply 对象的消息的字符串。

适用于

Implicit(String to OofReply)

定义字符串和 OofReply 对象之间的隐式转换。

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

参数

message
String

要转换为 对象 OofReply 的消息。

返回

使用 OofReply 指定消息初始化的对象。

适用于