CorrelationCallbackMessageProperty.TryGet メソッド

定義

メッセージまたはメッセージ プロパティのコレクションからのアタッチされた CorrelationCallbackMessageProperty の取得を試みます。

オーバーロード

TryGet(Message, CorrelationCallbackMessageProperty)

指定されたメッセージの Properties から CorrelationCallbackMessageProperty の取得を試みます。

TryGet(MessageProperties, CorrelationCallbackMessageProperty)

指定されたメッセージ プロパティから CorrelationCallbackMessageProperty の取得を試みます。

TryGet(Message, CorrelationCallbackMessageProperty)

指定されたメッセージの Properties から CorrelationCallbackMessageProperty の取得を試みます。

public:
 static bool TryGet(System::ServiceModel::Channels::Message ^ message, [Runtime::InteropServices::Out] System::ServiceModel::Channels::CorrelationCallbackMessageProperty ^ % property);
public static bool TryGet (System.ServiceModel.Channels.Message message, out System.ServiceModel.Channels.CorrelationCallbackMessageProperty property);
static member TryGet : System.ServiceModel.Channels.Message * CorrelationCallbackMessageProperty -> bool
Public Shared Function TryGet (message As Message, ByRef property As CorrelationCallbackMessageProperty) As Boolean

パラメーター

message
Message

検査対象の Properties を格納するメッセージ。

property
CorrelationCallbackMessageProperty

このメソッドが返されると、指定されたメッセージの Properties に格納された CorrelationCallbackMessageProperty が格納されます。それ以外の場合は、null が格納されます。 このパラメーターは初期化せずに渡されます。

戻り値

メッセージの Properties プロパティに CorrelationCallbackMessageProperty が含まれる場合は true。それ以外の場合は false

適用対象

TryGet(MessageProperties, CorrelationCallbackMessageProperty)

指定されたメッセージ プロパティから CorrelationCallbackMessageProperty の取得を試みます。

public:
 static bool TryGet(System::ServiceModel::Channels::MessageProperties ^ properties, [Runtime::InteropServices::Out] System::ServiceModel::Channels::CorrelationCallbackMessageProperty ^ % property);
public static bool TryGet (System.ServiceModel.Channels.MessageProperties properties, out System.ServiceModel.Channels.CorrelationCallbackMessageProperty property);
static member TryGet : System.ServiceModel.Channels.MessageProperties * CorrelationCallbackMessageProperty -> bool
Public Shared Function TryGet (properties As MessageProperties, ByRef property As CorrelationCallbackMessageProperty) As Boolean

パラメーター

properties
MessageProperties

検査対象のメッセージ プロパティ。

property
CorrelationCallbackMessageProperty

このメソッドが返されると、指定されたメッセージ プロパティに格納された CorrelationCallbackMessageProperty が格納されます。それ以外の場合は、null が格納されます。 このパラメーターは初期化せずに渡されます。

戻り値

メッセージ プロパティに CorrelationCallbackMessageProperty が含まれる場合は true。それ以外の場合は false

適用対象