3 implementations of GetProperty
System.ServiceModel (3)
System\ServiceModel\ChannelFactory.cs (1)
224public T GetProperty<T>() where T : class
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
46public virtual T GetProperty<T>()
System\ServiceModel\Security\WSTrustFeb2005.cs (1)
348public override T GetProperty<T>()
9 references to GetProperty
System.ServiceModel (8)
System\ServiceModel\ChannelFactory.cs (1)
228return this.innerFactory.GetProperty<T>();
System\ServiceModel\Channels\Binding.cs (1)
183this.ValidateSecurityCapabilities(channelFactory.GetProperty<ISecurityCapabilities>(), parameters);
System\ServiceModel\Channels\ChannelBase.cs (1)
83return factory.GetProperty<T>();
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
98return this.innerChannelFactory.GetProperty<T>();
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
38return this.innerChannelFactory.GetProperty<T>();
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
369ISecurityCapabilities innerSecurityCapabilities = this.InnerChannelFactory.GetProperty<ISecurityCapabilities>();
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
111return this.innerChannelFactory.GetProperty<T>();
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
494return this.innerChannelFactory.GetProperty<T>();
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientChannelFactory.cs (1)
111return this.innerChannelFactory.GetProperty<T>();