다음을 통해 공유


ContextMessageProperty.TryGet 메서드

정의

지정된 메시지 또는 메시지 속성 컬렉션에서 ContextMessageProperty를 가져오려고 합니다.

오버로드

TryGet(Message, ContextMessageProperty)

지정된 메시지의 속성에서 ContextMessageProperty 를 가져오려고 합니다.

TryGet(MessageProperties, ContextMessageProperty)

지정된 메시지 속성 컬렉션에서 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

매개 변수

message
Message

컨텍스트 메시지 속성을 검색할 Message 입니다.

contextMessageProperty
ContextMessageProperty

이 메서드에서 true를 반환하면 contextMessageProperty에는 message와 연결된 ContextMessageProperty가 있는 ContextMessageProperty가 포함됩니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다.

반환

true의 값을 message에서 가져오면 ContextMessageProperty이고, 그렇지 않으면 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에는 properties와 연결된 ContextMessageProperty가 있는 ContextMessageProperty가 포함됩니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다.

반환

true의 값을 properties에서 가져오면 ContextMessageProperty이고, 그렇지 않으면 false입니다.

적용 대상