13 implementations of GetProperty
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
151public T GetProperty<T>() where T : class
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
50public override T GetProperty<T>()
System.ServiceModel.Primitives (11)
System\ServiceModel\Channels\ChannelBase.cs (1)
58public virtual T GetProperty<T>() where T : class
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (1)
168public override T GetProperty<T>()
System\ServiceModel\Channels\DuplexChannel.cs (1)
56public override T GetProperty<T>()
System\ServiceModel\Channels\OutputChannel.cs (1)
50public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
147public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
150public override T GetProperty<T>()
System\ServiceModel\Channels\RequestChannel.cs (1)
134public override T GetProperty<T>()
System\ServiceModel\Channels\ServiceChannel.cs (1)
515public T GetProperty<T>() where T : class
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
533T IChannel.GetProperty<T>()
System\ServiceModel\ClientBase.cs (1)
1033TProperty IChannel.GetProperty<TProperty>()
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1397public T GetProperty<T>() where T : class
24 references to GetProperty
Client.ClientBase.IntegrationTests (2)
ClientBaseTests.4.1.0.cs (2)
29IHttpCookieContainerManager cookieManager = ((IChannel)serviceProxy).GetProperty<IHttpCookieContainerManager>(); 72IHttpCookieContainerManager cookieManager = ((IChannel)serviceProxy).GetProperty<IHttpCookieContainerManager>();
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelBase.cs (1)
47return this.InnerChannel.GetProperty<T>();
System.ServiceModel.Federation (3)
System\ServiceModel\Federation\WSTrustChannel.cs (3)
34MessageVersion = RequestChannel.GetProperty<MessageVersion>(); 38EndpointAddress endpointAddress = RequestChannel.GetProperty<EndpointAddress>(); 153return RequestChannel.GetProperty<T>();
System.ServiceModel.Primitives (16)
System\ServiceModel\Channels\ChannelParameterCollection.cs (1)
37ChannelParameterCollection innerCollection = innerChannel.GetProperty<ChannelParameterCollection>();
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (1)
181T innerProperty = Binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\LayeredChannel.cs (1)
37return InnerChannel.GetProperty<T>();
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (1)
1869FaultConverter faultConverter = innerChannel.GetProperty<FaultConverter>();
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
166T innerProperty = _binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
169T innerProperty = binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
310IChannelBindingProvider cbp = InnerChannel.GetProperty<IChannelBindingProvider>();
System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (2)
25FaultConverter inner = _innerChannel.GetProperty<FaultConverter>(); 45FaultConverter inner = _innerChannel.GetProperty<FaultConverter>();
System\ServiceModel\Channels\ServiceChannel.cs (1)
520return innerChannel.GetProperty<T>();
System\ServiceModel\Channels\WsrmMessageInfo.cs (2)
483FaultConverter faultConverter = channel.GetProperty<FaultConverter>(); 537FaultConverter faultConverter = channel.GetProperty<FaultConverter>();
System\ServiceModel\ClientBase.cs (1)
1035return ((IChannel)_channel).GetProperty<TProperty>();
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
494_listener.ChannelDispatcher.ProvideFault(e, _requestInfo.Channel == null ? Binder.Channel.GetProperty<FaultConverter>() : _requestInfo.Channel.GetProperty<FaultConverter>(), ref faultInfo);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1399return _innerChannel.GetProperty<T>();
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
391result = ChannelBinder.Channel.GetProperty<T>();
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ChannelFactoryTest.cs (1)
256IHttpCookieContainerManager cookieManager = ((IChannel)serviceProxy).GetProperty<IHttpCookieContainerManager>();
ServiceModel\ThrowingChannelBase.cs (1)
36return InnerChannel.GetProperty<T>();