MessageBody.Implicit 演算子

定義

オーバーロード

Implicit(MessageBody to String)

メッセージ本文の文字列への暗黙的な変換を定義します。

Implicit(String to MessageBody)

メッセージ本文への文字列の暗黙的な変換を定義します。

Implicit(MessageBody to String)

メッセージ本文の文字列への暗黙的な変換を定義します。

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

パラメーター

messageBody
MessageBody

文字列に変換するメッセージ本文。

戻り値

メッセージ本文のテキストを含む文字列。

適用対象

Implicit(String to MessageBody)

メッセージ本文への文字列の暗黙的な変換を定義します。

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

パラメーター

textBody
String

メッセージ本文に変換する文字列。

戻り値

指定した文字列で初期化されたメッセージ本文。

適用対象