3 references to AsyncMethodNameSuffix
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (1)
321CodeMemberMethod taskBasedAsyncMethod = new CodeMemberMethod { Name = syncMethodName + ServiceReflector.AsyncMethodNameSuffix };
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (2)
929else if (isTask && method.Name.EndsWith(AsyncMethodNameSuffix, StringComparison.Ordinal)) 931return method.Name.Substring(0, method.Name.Length - AsyncMethodNameSuffix.Length);