7 implementations of GetProperty
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBase.cs (1)
72
public virtual T
GetProperty
<T>() where T : class
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
49
public override T
GetProperty
<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
163
public override T
GetProperty
<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
538
public T
GetProperty
<T>() where T : class
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
523
T IChannel.
GetProperty
<T>()
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
656
TProperty IChannel.
GetProperty
<TProperty>()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1378
public T
GetProperty
<T>() where T : class
8 references to GetProperty
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelParameterCollection.cs (1)
36
ChannelParameterCollection innerCollection = innerChannel.
GetProperty
<ChannelParameterCollection>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannel.cs (1)
38
return this.InnerChannel.
GetProperty
<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (2)
24
FaultConverter inner = _innerChannel.
GetProperty
<FaultConverter>();
44
FaultConverter inner = _innerChannel.
GetProperty
<FaultConverter>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
542
return innerChannel.
GetProperty
<T>();
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
658
return ((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)
1380
return _innerChannel.
GetProperty
<T>();