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