Base:
property
Listener
System.ServiceModel.Dispatcher.ChannelDispatcherBase.Listener
14 references to Listener
System.ServiceModel (11)
System\ServiceModel\Description\ServiceMetadataBehavior.cs (4)
273mex.MexUrl = dispatcher.Listener.Uri; 300new InvalidOperationException(SR.GetString(SR.SFxServiceMetadataBehaviorInstancingError, channelDispatcher.Listener.Uri, channelDispatcher.CreateContractListString()))); 309bool isListeningOnHttps = channelDispatcher.Listener.Uri.Scheme == Uri.UriSchemeHttps; 310Uri listenUri = channelDispatcher.Listener.Uri;
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
376if (channelDispatcher != null && channelDispatcher.Listener.Uri == listenUri)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
799(this.Listener != null) ? this.Listener.Uri.ToString() : string.Empty,
System\ServiceModel\Dispatcher\EndpointDispatcher.cs (2)
175IChannelListener listener = this.channelDispatcher.Listener; 273this.listenUri = channelDispatcher.Listener.Uri;
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (2)
836ILogonTokenCacheManager logonManager = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<ILogonTokenCacheManager>(); 837Collection<ISecurityContextSecurityTokenCache> sctCaches = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<Collection<ISecurityContextSecurityTokenCache>>();
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ApplyHostConfigurationBehavior.cs (1)
47if (IsSchemeHttpOrHttps(channelDispatcher.Listener.Uri.Scheme))
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (2)
186(endpointDispatcher.ChannelDispatcher.Listener != null)) 188endpointDiscoveryMetadata = GetEndpointDiscoveryMetadata(endpoint, endpointDispatcher.ChannelDispatcher.Listener.Uri);