12 references to TryLookupUri
System.ServiceModel (12)
System\ServiceModel\Channels\ConnectionOrientedTransportManager.cs (3)
116if (AddressTable.TryLookupUri(via, HostNameComparisonMode.StrongWildcard, out channelListener)) 121if (AddressTable.TryLookupUri(via, HostNameComparisonMode.Exact, out channelListener)) 126AddressTable.TryLookupUri(via, HostNameComparisonMode.WeakWildcard, out channelListener);
System\ServiceModel\Channels\HttpAnonymousUriPrefixMatcher.cs (1)
61return this.anonymousUriPrefixes.TryLookupUri(to, HostNameComparisonMode.Exact, out returnValue);
System\ServiceModel\Channels\HttpChannelListener.cs (1)
599if (this.TransportManagerTable.TryLookupUri(this.Uri, hostNameComparisonMode, out registration))
System\ServiceModel\Channels\HttpTransportManager.cs (2)
159if (addressTable.TryLookupUri(requestUri, hostNameComparisonMode, out methodListener) 168&& addressTable.TryLookupUri(requestUri, hostNameComparisonMode, out listener))
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
136if (this.TransportManagerTable.TryLookupUri(this.Uri, TransportDefaults.HostNameComparisonMode, out registration))
System\ServiceModel\Channels\TransportChannelListener.cs (1)
505return this.TransportManagerTable.TryLookupUri(this.Uri, hostNameComparisonMode, out registration);
System\ServiceModel\Channels\TransportManager.cs (1)
79if (!addressTable.TryLookupUri(channelListener.Uri, registeredComparisonMode, out existingFactory) ||
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilter.cs (1)
92if (to == null || !addressTable.TryLookupUri(to, this.hostNameComparisonMode, out o))
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilterTable.cs (1)
88return GetAddressTable(includeHostNameInComparison).TryLookupUri(to, GetComparisonMode(includeHostNameInComparison), out cset);