19 implementations of GetProperty
System.ServiceModel (16)
System\ServiceModel\Channels\ChannelBase.cs (1)
78public virtual T GetProperty<T>() where T : class
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1040public T GetProperty<T>() where T : class
System\ServiceModel\Channels\DuplexChannel.cs (1)
53public override T GetProperty<T>()
System\ServiceModel\Channels\InputChannel.cs (1)
26public override T GetProperty<T>()
System\ServiceModel\Channels\OutputChannel.cs (1)
47public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
223public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (1)
246public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
173public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
349public override T GetProperty<T>()
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
193public override T GetProperty<T>()
System\ServiceModel\Channels\ReplyChannel.cs (1)
26public override T GetProperty<T>()
System\ServiceModel\Channels\RequestChannel.cs (1)
158public override T GetProperty<T>()
System\ServiceModel\Channels\ServiceChannel.cs (1)
568public T GetProperty<T>() where T : class
System\ServiceModel\ClientBase.cs (1)
1248TProperty IChannel.GetProperty<TProperty>()
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1442public T GetProperty<T>() where T : class
System\ServiceModel\Security\WSTrustChannel.cs (1)
726public T GetProperty<T>() where T : class
System.ServiceModel.Channels (3)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
40public override T GetProperty<T>()
System\ServiceModel\Channels\UdpOutputChannel.cs (1)
106public override T GetProperty<T>()
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
49public override T GetProperty<T>()
47 references to GetProperty
System.ServiceModel (43)
System\ServiceModel\ChannelFactory.cs (9)
730((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 739((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 748((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 757((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 766((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 775((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 784((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 793((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters); 802((IChannel)channel).GetProperty<ChannelParameterCollection>().Add(parameters);
System\ServiceModel\Channels\ChannelParameterCollection.cs (1)
37ChannelParameterCollection innerCollection = innerChannel.GetProperty<ChannelParameterCollection>();
System\ServiceModel\Channels\DatagramAdapter.cs (3)
821return this.listener.Channels[0].GetProperty<T>(); 910return this.listener.Channels[0].GetProperty<T>(); 1049return inner.GetProperty<T>();
System\ServiceModel\Channels\LayeredChannel.cs (1)
40return this.InnerChannel.GetProperty<T>();
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
161result = this.innerChannel.GetProperty<T>();
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
236T innerProperty = this.binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (1)
259T innerProperty = this.binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
3264FaultConverter faultConverter = innerChannel.GetProperty<FaultConverter>(); 3519FaultConverter converter = channel.GetProperty<FaultConverter>();
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
192T innerProperty = this.binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
363T innerProperty = this.binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
212T innerProperty = this.binder.Channel.GetProperty<T>();
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
397IChannelBindingProvider cbp = InnerChannel.GetProperty<IChannelBindingProvider>();
System\ServiceModel\Channels\SecurityChannelFaultConverter.cs (2)
28FaultConverter inner = this.innerChannel.GetProperty<FaultConverter>(); 48FaultConverter inner = innerChannel.GetProperty<FaultConverter>();
System\ServiceModel\Channels\ServiceChannel.cs (1)
572return innerChannel.GetProperty<T>();
System\ServiceModel\Channels\TransactionChannel.cs (1)
90return base.InnerChannel.GetProperty<T>();
System\ServiceModel\Channels\WsrmMessageInfo.cs (2)
589FaultConverter faultConverter = channel.GetProperty<FaultConverter>(); 643FaultConverter faultConverter = channel.GetProperty<FaultConverter>();
System\ServiceModel\ClientBase.cs (1)
1250return ((IChannel)this.channel).GetProperty<TProperty>();
System\ServiceModel\Dispatcher\ChannelHandler.cs (3)
170this.sessionOpenNotification = this.binder.Channel.GetProperty<SessionOpenNotification>(); 517Message message = Message.CreateMessage(this.Binder.Channel.GetProperty<MessageVersion>(), OperationDescription.SessionOpenedAction); 756this.listener.ChannelDispatcher.ProvideFault(e, this.requestInfo.Channel == null ? this.binder.Channel.GetProperty<FaultConverter>() : this.requestInfo.Channel.GetProperty<FaultConverter>(), ref faultInfo);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1444return this.innerChannel.GetProperty<T>();
System\ServiceModel\Security\AcceleratedTokenProvider.cs (1)
212ChannelParameterCollection newParameters = result.GetProperty<ChannelParameterCollection>();
System\ServiceModel\Security\InfocardInteractiveChannelInitializer.cs (1)
136proxy.GetProperty<ChannelParameterCollection>();
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
557result = channelBinder.Channel.GetProperty<T>();
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
515ChannelParameterCollection newParameters = channel.GetProperty<ChannelParameterCollection>();
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1682result = channelBinder.Channel.GetProperty<T>();
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (1)
206IChannelBindingProvider cbp = rstChannel.GetProperty<IChannelBindingProvider>();
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (2)
795ChannelParameterCollection newParameters = result.GetProperty<ChannelParameterCollection>(); 801ReplaceSspiIssuanceChannelParameter(result.GetProperty<ChannelParameterCollection>(), new SspiIssuanceChannelParameter(true, this.credentialsHandle));
System\ServiceModel\Security\WSTrustChannel.cs (1)
728return Channel.GetProperty<T>();
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
1775IContextManager contextManager = this.channel.GetProperty<IContextManager>();
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (1)
74return this.InnerChannel.GetProperty<T>();
System.WorkflowServices (2)
System\ServiceModel\Activities\WorkflowClientDeliverMessageWrapper.cs (1)
50IContextManager contextManager = desClient.InnerChannel.GetProperty<IContextManager>();
System\Workflow\Runtime\Hosting\ChannelManagerHelpers.cs (1)
126IContextManager contextManager = channel.GetProperty<IContextManager>();