9 references to GetHashedString
System.ServiceModel (9)
System\ServiceModel\Diagnostics\EndpointPerformanceCountersBase.cs (3)
101service = GetHashedString(service, count - hashLength, service.Length - count + hashLength, true); 108contract = GetHashedString(contract, count - hashLength, contract.Length - count + hashLength, true); 115uri = GetHashedString(uri, 0, uri.Length - count + hashLength, false);
System\ServiceModel\Diagnostics\OperationPerformanceCountersBase.cs (4)
97service = GetHashedString(service, count - hashLength, service.Length - count + hashLength, true); 104contract = GetHashedString(contract, count - hashLength, contract.Length - count + hashLength, true); 111operation = GetHashedString(operation, count - hashLength, operation.Length - count + hashLength, true); 118uri = GetHashedString(uri, 0, uri.Length - count + hashLength, false);
System\ServiceModel\Diagnostics\ServicePerformanceCountersBase.cs (2)
184serviceName = GetHashedString(serviceName, count - hashLength, serviceName.Length - count + hashLength, true); 191uri = GetHashedString(uri, 0, uri.Length - count + hashLength, false);