다음을 통해 공유


CompositeDuplexBindingElement.GetProperty<T>(BindingContext) 메서드

정의

채널 스택 중 하나의 해당 계층에서 요청된 형식의 개체를 반환합니다.

public:
generic <typename T>
 where T : class override T GetProperty(System::ServiceModel::Channels::BindingContext ^ context);
public override T GetProperty<T> (System.ServiceModel.Channels.BindingContext context) where T : class;
override this.GetProperty : System.ServiceModel.Channels.BindingContext -> 'T (requires 'T : null)
Public Overrides Function GetProperty(Of T As Class) (context As BindingContext) As T

형식 매개 변수

T

지원 여부를 테스트할 해당 형식의 개체입니다.

매개 변수

context
BindingContext

채널을 생성하는 데 필요한 컨텍스트를 제공하는 BindingContext입니다.

반환

T

요청한 형식의 개체가 지원되면 해당 형식의 T 개체이고, 그렇지 않으면 null입니다.

예외

contextnull입니다.

설명

이 메서드를 사용하여 속성을 설정하거나 스택 바인딩의 해당 계층에서 상태를 가져오기 위한 인터페이스 등과 같은 형식의 개체를 요청합니다. 요청된 개체의 반환을 지원하는 계층이 있으면 해당 개체가 반환됩니다. 그렇지 않으면 스택의 다음 계층에 호출을 위임합니다. 스택의 맨 아래에 도달할 때까지 요청된 개체를 지원하는 계층이 없으면 호출자는 null 값을 반환합니다.

적용 대상