Base:
property
Uri
System.ServiceModel.Channels.ChannelListenerBase.Uri
65 references to Uri
System.ServiceModel (65)
System\ServiceModel\Channels\ConnectionOrientedTransportManager.cs (2)
200
AddressTable.RegisterUri(channelListener.
Uri
, channelListener.HostNameComparisonModeInternal,
209
AddressTable.UnregisterUri(channelListener.
Uri
, channelListener.HostNameComparisonModeInternal);
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (2)
32
else if (channelListener.
Uri
.HostNameType == ipHostNameType)
34
this.ipAddress = IPAddress.Parse(channelListener.
Uri
.DnsSafeHost);
System\ServiceModel\Channels\HttpChannelListener.cs (6)
112
this.extendedProtectionPolicy = GetPolicyWithDefaultSpnCollection(bindingElement.ExtendedProtectionPolicy, this.authenticationScheme, this.HostNameComparisonModeInternal, base.
Uri
, out this.usingDefaultSpnList);
599
if (this.TransportManagerTable.TryLookupUri(this.
Uri
, hostNameComparisonMode, out registration))
622
this.AuditBehavior.SuppressAuditFailure, null, this.
Uri
, primaryIdentity);
627
this.AuditBehavior.SuppressAuditFailure, null, this.
Uri
, primaryIdentity, exception);
943
new EndpointAddress(this.
Uri
), this.
Uri
, this.bufferPool, httpRequestContext, pipeline, httpResponseMessage, subProtocol);
System\ServiceModel\Channels\HttpRequestContext.cs (3)
244
this.listener != null && this.listener.
Uri
!= null ? this.listener.
Uri
.AbsoluteUri : string.Empty,
329
TD.MessageSentByTransport(eventTraceActivity, this.Listener.
Uri
.AbsoluteUri);
System\ServiceModel\Channels\HttpTransportManager.cs (6)
160
&& string.Compare(requestUri.AbsolutePath, methodListener.
Uri
.AbsolutePath, StringComparison.OrdinalIgnoreCase) != 0)
170
if (methodListener != null && methodListener.
Uri
.AbsoluteUri.Length >= listener.
Uri
.AbsoluteUri.Length)
207
addressTable.RegisterUri(channelListener.
Uri
,
229
SR.ListenerFactoryNotRegistered, channelListener.
Uri
)));
235
addressTable.UnregisterUri(channelListener.
Uri
, registeredMode);
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (4)
136
if (this.TransportManagerTable.TryLookupUri(this.
Uri
, TransportDefaults.HostNameComparisonMode, out registration))
167
x509Requirement.ListenUri = this.
Uri
;
262
this.AuditBehavior.SuppressAuditFailure, null, this.
Uri
, primaryIdentity);
267
this.AuditBehavior.SuppressAuditFailure, null, this.
Uri
, primaryIdentity, exception);
System\ServiceModel\Channels\MsmqDecodeHelper.cs (1)
400
message.Headers.To = listener.
Uri
;
System\ServiceModel\Channels\MsmqInputChannelBase.cs (2)
23
this.receiver = new MsmqReceiveHelper(listener.ReceiveParameters, listener.
Uri
, messagePool, this, listener);
24
this.localAddress = new EndpointAddress(listener.
Uri
);
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (1)
28
: base(listener, new EndpointAddress(listener.
Uri
))
System\ServiceModel\Channels\MsmqInputSessionChannelListener.cs (1)
22
this.
Uri
,
System\ServiceModel\Channels\MsmqTransportBindingElement.cs (1)
172
MsmqVerifier.VerifyReceiver(receiveParameters, msmqListener.
Uri
);
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
162
this, new EndpointAddress(this.
Uri
), ExposeConnectionProperty, connectionDemuxer);
System\ServiceModel\Channels\PeerChannelListener.cs (4)
245
if (privatePeerNode != null && this.
Uri
.Host == privatePeerNode.MeshId)
253
this.registration = new PeerNodeImplementation.Registration(this.
Uri
, this);
254
foundPeerNode = PeerNodeImplementation.Get(this.
Uri
, registration);
262
new InvalidOperationException(SR.GetString(SR.PeerMaxReceivedMessageSizeConflict, MaxReceivedMessageSize, foundPeerNode.MaxReceivedMessageSize, this.
Uri
)));
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (1)
91
this.duplexAcceptor = new PeerDuplexChannelAcceptor(this.InnerNode, this.Registration, this, new EndpointAddress(this.
Uri
), this.BaseUri);
System\ServiceModel\Channels\PeerInputChannelListener.cs (2)
90
this.inputAcceptor = new PeerInputChannelAcceptor(this.InnerNode, this.Registration, this, new EndpointAddress(this.
Uri
), this.
Uri
);
System\ServiceModel\Channels\TcpChannelListener.cs (8)
169
this, new EndpointAddress(this.
Uri
), ExposeConnectionProperty, connectionDemuxer);
335
if (this.
Uri
.HostNameType == UriHostNameType.IPv6)
338
ipv6Address = IPAddress.Parse(this.
Uri
.DnsSafeHost);
340
else if (this.
Uri
.HostNameType == UriHostNameType.IPv4)
343
ipv4Address = IPAddress.Parse(this.
Uri
.DnsSafeHost);
348
if (this.
Uri
.HostNameType == UriHostNameType.IPv6)
352
SR.GetString(SR.TcpV6AddressInvalid, this.
Uri
));
358
SR.GetString(SR.TcpV4AddressInvalid, this.
Uri
));
System\ServiceModel\Channels\TransportChannelListener.cs (15)
315
if (this.
Uri
.HostNameType != UriHostNameType.IPv6)
320
IPAddress channelListenerIP = IPAddress.Parse(this.
Uri
.DnsSafeHost);
404
BaseUriWithWildcard baseAddress = AspNetEnvironment.Current.GetBaseUri(this.Scheme, this.
Uri
);
436
SR.GetString(SR.TraceCodeOpenedListener), new UriTraceRecord(this.
Uri
), this, null);
505
return this.TransportManagerTable.TryLookupUri(this.
Uri
, hostNameComparisonMode, out registration);
521
SR.GetString(SR.TraceCodeNoExistingTransportManager), new UriTraceRecord(this.
Uri
), this, null);
542
SR.GetString(SR.TraceCodeIncompatibleExistingTransportManager), new UriTraceRecord(this.
Uri
), this, null);
549
Uri nextUri = AddSegment(registration.ListenUri, this.
Uri
);
572
if ((String.Compare(this.
Uri
.Scheme, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase) == 0) ||
573
(String.Compare(this.
Uri
.Scheme, Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase) == 0)
578
SR.GetString(SR.Hosting_NoHttpTransportManagerForUri, this.
Uri
)));
580
else if ((String.Compare(this.
Uri
.Scheme, Uri.UriSchemeNetTcp, StringComparison.OrdinalIgnoreCase) == 0) ||
581
(String.Compare(this.
Uri
.Scheme, Uri.UriSchemeNetPipe, StringComparison.OrdinalIgnoreCase) == 0)
586
SR.Hosting_NoTcpPipeTransportManagerForUri, this.
Uri
)));
591
SR.NoCompatibleTransportManagerForUri, this.
Uri
)));
System\ServiceModel\Channels\TransportManager.cs (4)
79
if (!addressTable.TryLookupUri(channelListener.
Uri
, registeredComparisonMode, out existingFactory) ||
83
SR.ListenerFactoryNotRegistered, channelListener.
Uri
)));
116
ServiceModelActivity.Start(this.Activity, SR.GetString(SR.ActivityListenAt, channelListener.
Uri
.ToString()), ActivityType.ListenAt);
126
SR.GetString(SR.TraceCodeTransportListen, channelListener.
Uri
.ToString()), this);
System\ServiceModel\MsmqIntegration\MsmqIntegrationBindingElement.cs (1)
123
MsmqVerifier.VerifyReceiver(receiveParameters, listener.
Uri
);