15 instantiations of UriPrefixTable
System.ServiceModel (15)
System\ServiceModel\Channels\ConnectionOrientedTransportManager.cs (1)
28this.addressTable = new UriPrefixTable<TChannelListener>();
System\ServiceModel\Channels\HttpAnonymousUriPrefixMatcher.cs (2)
24this.anonymousUriPrefixes = new UriPrefixTable<Uri>(objectToClone.anonymousUriPrefixes); 42this.anonymousUriPrefixes = new UriPrefixTable<Uri>(true);
System\ServiceModel\Channels\HttpChannelListener.cs (1)
62new UriPrefixTable<ITransportManagerRegistration>(true);
System\ServiceModel\Channels\HttpTransportManager.cs (1)
199addressTable = new UriPrefixTable<HttpChannelListener>();
System\ServiceModel\Channels\Msmq.cs (1)
15static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = new UriPrefixTable<ITransportManagerRegistration>();
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
180new UriPrefixTable<ITransportManagerRegistration>();
System\ServiceModel\Channels\PeerChannelListener.cs (1)
33new UriPrefixTable<ITransportManagerRegistration>(true);
System\ServiceModel\Channels\SharedHttpsTransportManager.cs (1)
12new UriPrefixTable<ITransportManagerRegistration>(true);
System\ServiceModel\Channels\TcpChannelListener.cs (1)
188new UriPrefixTable<ITransportManagerRegistration>(true);
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilter.cs (1)
43this.addressTable = new UriPrefixTable<object>();
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilterTable.cs (4)
23this.toHostTable = new UriPrefixTable<CandidateSet>(); 24this.toNoHostTable = new UriPrefixTable<CandidateSet>(); 93this.toHostTable = new UriPrefixTable<EndpointAddressMessageFilterTable<TFilterData>.CandidateSet>(); 94this.toNoHostTable = new UriPrefixTable<EndpointAddressMessageFilterTable<TFilterData>.CandidateSet>();
40 references to UriPrefixTable
System.ServiceModel (40)
System\ServiceModel\Channels\ConnectionOrientedTransportManager.cs (2)
16UriPrefixTable<TChannelListener> addressTable; 31UriPrefixTable<TChannelListener> AddressTable
System\ServiceModel\Channels\HttpAnonymousUriPrefixMatcher.cs (1)
13UriPrefixTable<Uri> anonymousUriPrefixes;
System\ServiceModel\Channels\HttpChannelListener.cs (3)
61static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = 288internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable 304internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\HttpsChannelListener.cs (1)
106internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\HttpTransportManager.cs (10)
15volatile Dictionary<string, UriPrefixTable<HttpChannelListener>> addressTables; 22this.addressTables = new Dictionary<string, UriPrefixTable<HttpChannelListener>>(); 69internal virtual UriPrefixTable<ITransportManagerRegistration> TransportManagerTable 89foreach (KeyValuePair<string, UriPrefixTable<HttpChannelListener>> pair in this.addressTables) 150UriPrefixTable<HttpChannelListener> addressTable; 151Dictionary<string, UriPrefixTable<HttpChannelListener>> localAddressTables = addressTables; 189UriPrefixTable<HttpChannelListener> addressTable; 196Dictionary<string, UriPrefixTable<HttpChannelListener>> newAddressTables = 197new Dictionary<string, UriPrefixTable<HttpChannelListener>>(addressTables); 225UriPrefixTable<HttpChannelListener> addressTable;
System\ServiceModel\Channels\Msmq.cs (2)
15static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = new UriPrefixTable<ITransportManagerRegistration>(); 60internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
76internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\NamedPipeChannelListener.cs (3)
179static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = 203internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable 211internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\PeerChannelListener.cs (3)
32static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = 111internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable 119internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\SharedHttpsTransportManager.cs (3)
11static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = 28internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable 33internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\TcpChannelListener.cs (3)
187static UriPrefixTable<ITransportManagerRegistration> transportManagerTable = 262internal static UriPrefixTable<ITransportManagerRegistration> StaticTransportManagerTable 270internal override UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\TransportChannelListener.cs (1)
266internal abstract UriPrefixTable<ITransportManagerRegistration> TransportManagerTable
System\ServiceModel\Channels\TransportManager.cs (2)
74internal static void EnsureRegistered<TChannelListener>(UriPrefixTable<TChannelListener> addressTable, 88protected void Fault<TChannelListener>(UriPrefixTable<TChannelListener> addressTable, Exception exception)
System\ServiceModel\Channels\UriPrefixTable.cs (1)
41internal UriPrefixTable(UriPrefixTable<TItem> objectToClone)
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilter.cs (1)
21UriPrefixTable<object> addressTable;
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilterTable.cs (3)
13UriPrefixTable<CandidateSet> toHostTable; 14UriPrefixTable<CandidateSet> toNoHostTable; 81UriPrefixTable<CandidateSet> GetAddressTable(bool includeHostNameInComparison)