2 implementations of GetProperty
System.ServiceModel (1)
System\ServiceModel\Channels\ChannelListenerBase.cs (1)
61public virtual T GetProperty<T>()
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
195public virtual T GetProperty<T>()
13 references to GetProperty
System.ServiceModel (13)
System\ServiceModel\Channels\Binding.cs (1)
249this.ValidateSecurityCapabilities(channelListener.GetProperty<ISecurityCapabilities>(), parameters);
System\ServiceModel\Channels\ChannelBase.cs (1)
89return listener.GetProperty<T>();
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (1)
180return channelListener.GetProperty<T>();
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
90return channelListener.GetProperty<T>();
System\ServiceModel\Channels\PeerService.cs (1)
142return new EndpointAddress(listener.Uri, listener.GetProperty<EndpointIdentity>());
System\ServiceModel\Channels\SecurityChannelListener.cs (2)
364ExtendedProtectionPolicy extendedProtectionPolicy = InnerChannelListener.GetProperty<ExtendedProtectionPolicy>(); 378IChannelBindingProvider cbp = InnerChannelListener.GetProperty<IChannelBindingProvider>();
System\ServiceModel\Dispatcher\EndpointDispatcher.cs (1)
176EndpointIdentity identity = listener.GetProperty<EndpointIdentity>();
System\ServiceModel\Security\SecurityListenerSettingsLifetimeManager.cs (1)
64ITransportFactorySettings transportSettings = this.innerListener.GetProperty<ITransportFactorySettings>();
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (4)
398manager = listener.GetProperty<ILogonTokenCacheManager>(); 424manager = listener.GetProperty<ILogonTokenCacheManager>(); 836ILogonTokenCacheManager logonManager = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<ILogonTokenCacheManager>(); 837Collection<ISecurityContextSecurityTokenCache> sctCaches = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<Collection<ISecurityContextSecurityTokenCache>>();