Binding.CanBuildChannelListener 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 바인딩이 지정된 기준을 충족하는 채널 수신기를 서비스에 생성할 수 있는지 여부를 나타내는 값을 반환합니다.
오버로드
CanBuildChannelListener<TChannel>(Object[]) |
현재 바인딩이 개체 배열에 지정된 기준을 충족하는 채널 수신기 스택을 서비스에 생성할 수 있는지 여부를 나타내는 값을 반환합니다. |
CanBuildChannelListener<TChannel>(BindingParameterCollection) |
현재 바인딩이 지정된 바인딩 매개 변수 컬렉션을 충족하는 채널 수신기 스택을 서비스에 생성할 수 있는지 여부를 나타내는 값을 반환합니다. |
CanBuildChannelListener<TChannel>(Object[])
현재 바인딩이 개체 배열에 지정된 기준을 충족하는 채널 수신기 스택을 서비스에 생성할 수 있는지 여부를 나타내는 값을 반환합니다.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel bool CanBuildChannelListener(... cli::array <System::Object ^> ^ parameters);
public bool CanBuildChannelListener<TChannel> (params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
member this.CanBuildChannelListener : obj[] -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (ParamArray parameters As Object()) As Boolean
형식 매개 변수
- TChannel
수신기를 테스트할 대상 채널 형식입니다.
매개 변수
- parameters
- Object[]
생성되는 채널 수신기에 대한 요구 사항을 지정하는 개체 배열입니다.
반환
지정된 채널 수신기 스택을 서비스에 생성할 수 있으면 true
이고, 그렇지 않으면 false
입니다.
설명
형식 TChannel
의 채널에 대한 채널 수신기를 실제로 수신기를 빌드하기 전에 지정된 바인딩 parameters
에 대해 빌드할 수 있는지 검사 하려면 이 메서드를 사용합니다. 또는 를 호출 BuildChannelListener<TChannel>(Object[]) 하여 채널 수신기를 빌드하고 생성할 수 없는 경우 생성된 예외를 catch합니다.
적용 대상
CanBuildChannelListener<TChannel>(BindingParameterCollection)
현재 바인딩이 지정된 바인딩 매개 변수 컬렉션을 충족하는 채널 수신기 스택을 서비스에 생성할 수 있는지 여부를 나타내는 값을 반환합니다.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual bool CanBuildChannelListener(System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual bool CanBuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member CanBuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.CanBuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (parameters As BindingParameterCollection) As Boolean
형식 매개 변수
- TChannel
수신기를 테스트할 대상 채널 형식입니다.
매개 변수
- parameters
- BindingParameterCollection
생성되는 채널 수신기에 대한 요구 사항을 지정하는 BindingParameterCollection입니다.
반환
지정된 채널 수신기 스택을 서비스에 생성할 수 있으면 true
이고, 그렇지 않으면 false
입니다.
설명
형식 TChannel
의 채널에 대한 채널 수신기를 실제로 수신기를 빌드하기 전에 지정된 바인딩 parameters
에 대해 빌드할 수 있는지 검사 하려면 이 메서드를 사용합니다. 또는 를 호출 BuildChannelListener<TChannel>(BindingParameterCollection) 하여 채널 수신기를 빌드하고 생성할 수 없는 경우 생성된 예외를 catch합니다.
적용 대상
.NET