ContextMessageProperty.TryGet Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Пытается получить свойство ContextMessageProperty
из указанного сообщения или коллекции свойств сообщения.
Перегрузки
TryGet(Message, ContextMessageProperty) |
Пытается получить свойство |
TryGet(MessageProperties, ContextMessageProperty) |
Пытается получить свойство |
TryGet(Message, ContextMessageProperty)
Пытается получить свойство ContextMessageProperty
из свойств указанного сообщения.
public:
static bool TryGet(System::ServiceModel::Channels::Message ^ message, [Runtime::InteropServices::Out] System::ServiceModel::Channels::ContextMessageProperty ^ % contextMessageProperty);
public static bool TryGet (System.ServiceModel.Channels.Message message, out System.ServiceModel.Channels.ContextMessageProperty contextMessageProperty);
static member TryGet : System.ServiceModel.Channels.Message * ContextMessageProperty -> bool
Public Shared Function TryGet (message As Message, ByRef contextMessageProperty As ContextMessageProperty) As Boolean
Параметры
- contextMessageProperty
- ContextMessageProperty
Если этот метод возвращает значение true
, параметр contextMessageProperty
содержит свойство ContextMessageProperty, содержащее свойство ContextMessageProperty
, связанное с message
. Этот параметр передается неинициализированным.
Возвращаемое значение
true
, если значение свойства ContextMessageProperty
получено из message
; в противном случае — false
.
Применяется к
TryGet(MessageProperties, ContextMessageProperty)
Пытается получить свойство ContextMessageProperty
из указанной коллекции свойств сообщения.
public:
static bool TryGet(System::ServiceModel::Channels::MessageProperties ^ properties, [Runtime::InteropServices::Out] System::ServiceModel::Channels::ContextMessageProperty ^ % contextMessageProperty);
public static bool TryGet (System.ServiceModel.Channels.MessageProperties properties, out System.ServiceModel.Channels.ContextMessageProperty contextMessageProperty);
static member TryGet : System.ServiceModel.Channels.MessageProperties * ContextMessageProperty -> bool
Public Shared Function TryGet (properties As MessageProperties, ByRef contextMessageProperty As ContextMessageProperty) As Boolean
Параметры
- properties
- MessageProperties
Сообщение MessageProperties, из которого требуется извлечь контекстные свойства сообщения.
- contextMessageProperty
- ContextMessageProperty
Если этот метод возвращает значение true
, параметр contextMessageProperty
содержит свойство ContextMessageProperty, содержащее свойство ContextMessageProperty
, связанное с properties
. Этот параметр передается неинициализированным.
Возвращаемое значение
true
, если значение свойства ContextMessageProperty
получено из properties
; в противном случае — false
.