4 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 (2)
netstandard.cs (2)
535TProperty System.ServiceModel.Channels.IChannel.GetProperty<TProperty>() { return default; } 1323public virtual T GetProperty<T>() where T : class { return default; }
8 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.Tests (2)
ServiceModel\ChannelFactoryTest.cs (1)
256IHttpCookieContainerManager cookieManager = ((IChannel)serviceProxy).GetProperty<IHttpCookieContainerManager>();
ServiceModel\ThrowingChannelBase.cs (1)
36return InnerChannel.GetProperty<T>();