1 instantiation of ListenUriInfo
System.ServiceModel (1)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
622return new ListenUriInfo(listenUri, endpoint.ListenUriMode);
14 references to ListenUriInfo
System.ServiceModel (14)
System\ServiceModel\Description\DispatcherBuilder.cs (8)
155return this.Equals(other as ListenUriInfo); 158public bool Equals(ListenUriInfo other) 619internal static ListenUriInfo GetListenUriInfoForEndpoint(ServiceHostBase host, ServiceEndpoint endpoint) 638Dictionary<ListenUriInfo, StuffPerListenUriInfo> stuffPerListenUriInfo 639= new Dictionary<ListenUriInfo, StuffPerListenUriInfo>(); 677ListenUriInfo listenUriInfo = GetListenUriInfoForEndpoint(serviceHost, endpoint); 685foreach (KeyValuePair<ListenUriInfo, StuffPerListenUriInfo> stuff in stuffPerListenUriInfo) 829foreach (KeyValuePair<ListenUriInfo, StuffPerListenUriInfo> stuff in stuffPerListenUriInfo)
System\ServiceModel\ServiceHost.cs (6)
50Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> endpointsByListenUriInfo; 278internal Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> EndpointsByListenUriInfo 290Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> GetEndpointsByListenUriInfo() 292Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> endpointDictionary = new Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>>(); 295DispatcherBuilder.ListenUriInfo listenUriInfo = DispatcherBuilder.GetListenUriInfoForEndpoint(this, endpoint);