77 references to Endpoints
System.ServiceModel (49)
System\ServiceModel\Administration\ServiceInfo.cs (1)
28this.endpoints = new EndpointInfoCollection(service.Description.Endpoints, this.ServiceName);
System\ServiceModel\Channels\ContextBindingElement.cs (1)
308foreach (ServiceEndpoint endpoint in description.Endpoints)
System\ServiceModel\Channels\PeerService.cs (1)
189this.serviceHost.Description.Endpoints.Clear();
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (1)
52exporter.ExportEndpoints(service.Endpoints, serviceQName);
System\ServiceModel\ComIntegration\ComPlusServiceLoader.cs (2)
38SR.TraceCodeComIntegrationServiceHostCreatedServiceEndpoint, this.info, service.Endpoints); 96foreach (ServiceEndpoint endpoint in service.Endpoints)
System\ServiceModel\ComIntegration\SecurityCookieModeValidator.cs (1)
54foreach (ServiceEndpoint endpoint in service.Endpoints)
System\ServiceModel\Description\ConfigLoader.cs (2)
533description.Endpoints.Add(serviceEndpoint); 538description.Endpoints.Add(endpoint);
System\ServiceModel\Description\DispatcherBuilder.cs (6)
203for (int i = 0; i < description.Endpoints.Count; i++) 205ServiceEndpoint endpoint = description.Endpoints[i]; 210if (description.Endpoints[j].Contract == contract) 529foreach (ServiceEndpoint endpoint in description.Endpoints) 644for (int i = 0; i < description.Endpoints.Count; i++) 648ServiceEndpoint endpoint = description.Endpoints[i];
System\ServiceModel\Description\ServiceAuthenticationBehavior.cs (1)
178foreach (ServiceEndpoint endpoint in description.Endpoints)
System\ServiceModel\Description\ServiceDescription.cs (2)
204for (int i = 0; i < this.Endpoints.Count; i++) 206ServiceEndpoint endpoint = this.Endpoints[i];
System\ServiceModel\Description\ServiceMetadataBehavior.cs (1)
475foreach (ServiceEndpoint endpoint in this.description.Endpoints)
System\ServiceModel\Dispatcher\DataContractSerializerServiceBehavior.cs (1)
69foreach (ServiceEndpoint endpoint in description.Endpoints)
System\ServiceModel\Dispatcher\PartialTrustValidationBehavior.cs (2)
65for (int i = 0; i < description.Endpoints.Count; i++) 67ServiceEndpoint endpoint = description.Endpoints[i];
System\ServiceModel\Dispatcher\PeerValidationBehavior.cs (2)
79for (int i = 0; i < description.Endpoints.Count; i++) 81ServiceEndpoint endpoint = description.Endpoints[i];
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (10)
147for (int i = 0; i < description.Endpoints.Count; i++) 149ServiceEndpoint endpoint = description.Endpoints[i]; 283for (int i = 0; i < description.Endpoints.Count; i++) 285ServiceEndpoint endpoint = description.Endpoints[i]; 363for (int i = 0; i < description.Endpoints.Count; i++) 365ServiceEndpoint endpoint = description.Endpoints[i]; 930for (int i = 0; i < description.Endpoints.Count; i++) 932ServiceEndpoint endpoint = description.Endpoints[i]; 984for (int i = 0; i < description.Endpoints.Count; i++) 986ServiceEndpoint endpoint = description.Endpoints[i];
System\ServiceModel\Dispatcher\TransactionValidationBehavior.cs (4)
129for (int i = 0; i < service.Endpoints.Count; i++) 131ServiceEndpoint endpoint = service.Endpoints[i]; 285for (int i = 0; i < service.Endpoints.Count; i++) 287if (HasTransactedOperations(service.Endpoints[i]))
System\ServiceModel\Dispatcher\UniqueContractNameValidationBehavior.cs (1)
27foreach (ServiceEndpoint endpoint in description.Endpoints)
System\ServiceModel\MsmqIntegration\MsmqIntegrationValidationBehavior.cs (2)
67for (int i = 0; i < description.Endpoints.Count; i++) 69ServiceEndpoint endpoint = description.Endpoints[i];
System\ServiceModel\Security\WSTrustServiceHost.cs (2)
108bool isMexEndpointAlreadyAdded = (Description.Endpoints.Find(typeof(IMetadataExchange)) != null); 166if (Description.Endpoints.Count == 0)
System\ServiceModel\ServiceConfiguration.cs (1)
191this.Description.Endpoints.Add(endpoint);
System\ServiceModel\ServiceHost.cs (5)
293foreach (ServiceEndpoint endpoint in this.Description.Endpoints) 375this.Description.Endpoints.Add(serviceEndpoint); 418this.Description.Endpoints.Add(endpoint); 545if (this.Description.Endpoints.Count == 0) 999foreach (ServiceEndpoint serviceEndpoint in this.Description.Endpoints)
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\ApplyHostConfigurationBehavior.cs (2)
22if (service.Description.Endpoints != null && ServiceHostingEnvironment.MultipleSiteBindingsEnabled) 65foreach (ServiceEndpoint endpoint in service.Description.Endpoints)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
147foreach (ServiceEndpoint endpoint in description.Endpoints)
System.ServiceModel.Activities (7)
System\ServiceModel\Activities\Description\BufferedReceiveServiceBehavior.cs (1)
70foreach (ServiceEndpoint serviceEndpoint in serviceDescription.Endpoints)
System\ServiceModel\Activities\Description\ControlOperationBehavior.cs (1)
44foreach (ServiceEndpoint endpointToMatch in serviceHost.Description.Endpoints)
System\ServiceModel\Activities\Description\WorkflowOperationBehavior.cs (1)
80foreach (ServiceEndpoint endpointToMatch in serviceHost.Description.Endpoints)
System\ServiceModel\Activities\Description\WorkflowServiceBehavior.cs (1)
100foreach (ServiceEndpoint endpointToMatch in serviceHost.Description.Endpoints)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (1)
323foreach (ServiceEndpoint endpoint in this.Host.Description.Endpoints)
System\ServiceModel\Activities\WorkflowServiceHost.cs (2)
362base.Description.Endpoints.Add(serviceEndpoint); 631foreach (ServiceEndpoint serviceEndpoint in this.Description.Endpoints)
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (1)
265foreach (ServiceEndpoint endpoint in serviceDescription.Endpoints)
System\ServiceModel\Discovery\ServiceDiscoveryBehavior.cs (3)
58if (serviceDescription.Endpoints.Count > appEndpoints.Count) 149List<ServiceEndpoint> appEndpoints = new List<ServiceEndpoint>(serviceDescription.Endpoints.Count); 150foreach (ServiceEndpoint endpoint in serviceDescription.Endpoints)
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\RoutingBehavior.cs (1)
64foreach (ServiceEndpoint endpoint in serviceDescription.Endpoints)
System.ServiceModel.Web (7)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
261foreach (ServiceEndpoint serviceEndpoint in host.Description.Endpoints)
System\ServiceModel\Web\OutgoingWebResponseContext.cs (1)
162foreach (ServiceEndpoint endpoint in this.operationContext.Host.Description.Endpoints)
System\ServiceModel\Web\WebServiceHost.cs (4)
49if (host.Description.Endpoints != null 50&& host.Description.Endpoints.Count > 0 89foreach (ServiceEndpoint endpoint in host.Description.Endpoints) 226foreach (ServiceEndpoint serviceEndpoint in this.Description.Endpoints)
System\ServiceModel\WebScriptServiceHost.cs (1)
31foreach (ServiceEndpoint endpoint in this.Description.Endpoints)
System.WorkflowServices (6)
System\ServiceModel\Description\DurableServiceAttribute.cs (4)
67if (serviceDescription.Endpoints == null) 162ServiceEndpoint serviceEndPoint = serviceDescription.Endpoints.Find(new XmlQualifiedName(endpointDispatcher.ContractName, endpointDispatcher.ContractNamespace)); 194foreach (ServiceEndpoint endpoint in serviceDescription.Endpoints) 260foreach (ServiceEndpoint serviceEndpoint in serviceDescription.Endpoints)
System\ServiceModel\Description\WorkflowServiceBehavior.cs (2)
223if (description.Endpoints == null) 289ServiceEndpoint serviceEndPoint = description.Endpoints.Find(new XmlQualifiedName(endPointDispatcher.ContractName, endPointDispatcher.ContractNamespace));