You've already forked linux-packaging-mono
Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
This commit is contained in:
@@ -120,7 +120,7 @@ namespace System.ServiceModel.Administration
|
||||
{
|
||||
Fx.Assert(null != endpoint, "");
|
||||
Fx.Assert(null != instance, "");
|
||||
instance.SetProperty(AdministrationStrings.CounterInstanceName, PerformanceCounters.PerformanceCountersEnabled ? EndpointPerformanceCounters.CreateFriendlyInstanceName(endpoint.ServiceName, endpoint.Contract.Name, endpoint.Address.AbsoluteUri.ToUpperInvariant()) : String.Empty);
|
||||
instance.SetProperty(AdministrationStrings.CounterInstanceName, PerformanceCounters.PerformanceCountersEnabled ? EndpointPerformanceCounters.GetFriendlyInstanceName(endpoint.ServiceName, endpoint.Contract.Name, endpoint.Address.AbsoluteUri.ToUpperInvariant()) : String.Empty);
|
||||
instance.SetProperty(AdministrationStrings.Name, endpoint.Name);
|
||||
instance.SetProperty(AdministrationStrings.ContractName, endpoint.Contract.Name);
|
||||
FillAddressInfo(endpoint, instance);
|
||||
@@ -668,7 +668,7 @@ namespace System.ServiceModel.Administration
|
||||
|
||||
if (PerformanceCounters.PerformanceCountersEnabled && null != endpointInfo)
|
||||
{
|
||||
result = OperationPerformanceCounters.CreateFriendlyInstanceName(endpointInfo.ServiceName, endpointInfo.Contract.Name, operationName, endpointInfo.Address.AbsoluteUri.ToUpperInvariant());
|
||||
result = OperationPerformanceCounters.GetFriendlyInstanceName(endpointInfo.ServiceName, endpointInfo.Contract.Name, operationName, endpointInfo.Address.AbsoluteUri.ToUpperInvariant());
|
||||
}
|
||||
|
||||
return result;
|
||||
|
@@ -132,7 +132,7 @@ namespace System.ServiceModel.Administration
|
||||
Fx.Assert(null != instance, "");
|
||||
Fx.Assert(null != info, "");
|
||||
ProviderBase.FillCollectionInfo(info.Service.BaseAddresses, instance, AdministrationStrings.BaseAddresses);
|
||||
instance.SetProperty(AdministrationStrings.CounterInstanceName, PerformanceCounters.PerformanceCountersEnabled ? ServicePerformanceCounters.CreateFriendlyInstanceName(info.Service) : String.Empty);
|
||||
instance.SetProperty(AdministrationStrings.CounterInstanceName, PerformanceCounters.PerformanceCountersEnabled ? ServicePerformanceCounters.GetFriendlyInstanceName(info.Service) : String.Empty);
|
||||
instance.SetProperty(AdministrationStrings.ConfigurationName, info.ConfigurationName);
|
||||
instance.SetProperty(AdministrationStrings.DistinguishedName, info.DistinguishedName);
|
||||
instance.SetProperty(AdministrationStrings.Name, info.Name);
|
||||
|
Reference in New Issue
Block a user