7 references to Address
System.ServiceModel (7)
System\ServiceModel\Administration\EndpointInfo.cs (2)
47get { return null != this.Endpoint.ListenUri ? this.Endpoint.ListenUri : this.Address; } 87return this.ServiceName + "." + this.Contract.Name + "@" + this.Address.AbsoluteUri;
System\ServiceModel\Administration\EndpointInstanceProvider.cs (4)
106instance.SetProperty(AdministrationStrings.Address, endpoint.Address == null ? String.Empty : endpoint.Address.ToString()); 123instance.SetProperty(AdministrationStrings.CounterInstanceName, PerformanceCounters.PerformanceCountersEnabled ? EndpointPerformanceCounters.GetFriendlyInstanceName(endpoint.ServiceName, endpoint.Contract.Name, endpoint.Address.AbsoluteUri.ToUpperInvariant()) : String.Empty); 671result = OperationPerformanceCounters.GetFriendlyInstanceName(endpointInfo.ServiceName, endpointInfo.Contract.Name, operationName, endpointInfo.Address.AbsoluteUri.ToUpperInvariant());
System\ServiceModel\Administration\ServiceInfo.cs (1)
54Uri addressUri = this.Endpoints[0].Address;