3 implementations of GetProperty
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
195public T GetProperty<T>() where T : class
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
46public virtual T GetProperty<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
306public override T GetProperty<T>()
5 references to GetProperty
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
199return _innerFactory.GetProperty<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
175this.ValidateSecurityCapabilities(channelFactory.GetProperty<ISecurityCapabilities>(), parameters);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
77return factory.GetProperty<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
37return _innerChannelFactory.GetProperty<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
477return _innerChannelFactory.GetProperty<T>();