7 implementations of GetProperty
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
72public virtual T GetProperty<T>() where T : class
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
49public override T GetProperty<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
163public override T GetProperty<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
538public T GetProperty<T>() where T : class
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
523T IChannel.GetProperty<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
656TProperty IChannel.GetProperty<TProperty>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1378public T GetProperty<T>() where T : class
8 references to GetProperty
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelParameterCollection.cs (1)
36ChannelParameterCollection innerCollection = innerChannel.GetProperty<ChannelParameterCollection>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (1)
38return this.InnerChannel.GetProperty<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (2)
24FaultConverter inner = _innerChannel.GetProperty<FaultConverter>(); 44FaultConverter inner = _innerChannel.GetProperty<FaultConverter>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
542return innerChannel.GetProperty<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
658return ((IChannel)_channel).GetProperty<TProperty>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
502_listener.ChannelDispatcher.ProvideFault(e, _requestInfo.Channel == null ? _binder.Channel.GetProperty<FaultConverter>() : _requestInfo.Channel.GetProperty<FaultConverter>(), ref faultInfo);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1380return _innerChannel.GetProperty<T>();