Base:
property
RemoteAddress
System.ServiceModel.Channels.OutputChannel.RemoteAddress
32 references to RemoteAddress
System.ServiceModel (32)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (11)
55
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
135
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
288
HttpTransportSecurityHelpers.RemoveIdentityMapping(Via,
RemoteAddress
, !aborting);
301
if (HttpChannelFactory<IDuplexSessionChannel>.MapIdentity(this.
RemoteAddress
, this.channelFactory.AuthenticationScheme))
305
this.cleanupIdentity = HttpTransportSecurityHelpers.AddIdentityMapping(Via,
RemoteAddress
);
310
this.
RemoteAddress
,
321
SecurityTokenProvider certificateProvider = httpsChannelFactory.CreateAndOpenCertificateTokenProvider(this.
RemoteAddress
, this.Via, channelParameterCollection, helper.RemainingTime());
322
clientCertificateToken = httpsChannelFactory.GetCertificateSecurityToken(certificateProvider, this.
RemoteAddress
, this.Via, channelParameterCollection, ref helper);
325
request = this.channelFactory.GetWebRequest(this.
RemoteAddress
, this.Via, this.webRequestTokenProvider, this.webRequestProxyTokenProvider, clientCertificateToken, helper.RemainingTime(), true);
System\ServiceModel\Channels\FramingChannels.cs (3)
264
StreamUpgradeInitiator upgradeInitiator = upgrade.CreateUpgradeInitiator(this.
RemoteAddress
, this.Via);
503
this.upgradeInitiator = channel.upgrade.CreateUpgradeInitiator(channel.
RemoteAddress
, channel.Via);
534
channel, channel.
RemoteAddress
, this.connection, channel.decoder, this.upgradeInitiator,
System\ServiceModel\Channels\MsmqOutputChannel.cs (2)
96
this.msmqQueue = new MsmqQueue(this.factory.AddressTranslator.UriToFormatName(this.
RemoteAddress
.Uri),
154
msmqMessage = new MsmqOutputMessage<IOutputChannel>(this.factory, size, this.
RemoteAddress
);
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (2)
95
using (MsmqOutputMessage<IOutputSessionChannel> msmqMessage = new MsmqOutputMessage<IOutputSessionChannel>(this.Factory, size, this.
RemoteAddress
))
164
this.msmqQueue = new MsmqQueue(this.Factory.AddressTranslator.UriToFormatName(this.
RemoteAddress
.Uri),
System\ServiceModel\Channels\PeerOutputChannel.cs (1)
166
this.
RemoteAddress
.ApplyTo(message);
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
1582
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(FaultStringDecoder.GetFaultException(decoder.Fault, channel.
RemoteAddress
.Uri.ToString(), messageEncoder.ContentType));
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (2)
535
TD.MessageSentByTransport(eventTraceActivity, this.
RemoteAddress
.Uri.AbsoluteUri);
1086
TD.MessageSentByTransport(thisPtr.eventTraceActivity, thisPtr.channel.
RemoteAddress
.Uri.AbsoluteUri);
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (8)
156
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
181
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
217
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
339
this.
RemoteAddress
!= null ? this.
RemoteAddress
.ToString() : string.Empty);
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
75
this.msmqQueue = new MsmqQueue(this.factory.AddressTranslator.UriToFormatName(this.
RemoteAddress
.Uri), UnsafeNativeMethods.MQ_SEND_ACCESS);
153
using (MsmqIntegrationOutputMessage msmqMessage = new MsmqIntegrationOutputMessage(this.factory, size, this.
RemoteAddress
, property))