17 references to MethodNames
System.Web.Services (17)
System\Web\Services\Description\HttpProtocolImporter.cs (6)
238string handlerName = MethodNames.AddUnique(uniqueMethodName + "Completed", uniqueMethodName); 239string asyncName = MethodNames.AddUnique(uniqueMethodName + "Async", uniqueMethodName); 240string callbackMember = MethodNames.AddUnique(uniqueMethodName + "OperationCompleted", uniqueMethodName); 241string callbackName = MethodNames.AddUnique("On" + uniqueMethodName + "OperationCompleted", uniqueMethodName); 326method.Name = MethodNames.AddUnique(MethodName, method); 332MethodNames.Clear();
System\Web\Services\Description\ProtocolImporter.cs (2)
434string cancelMethodName = MethodNames.AddUnique(cancelAsync, cancelAsync); 572MethodNames.Clear();
System\Web\Services\Description\SoapProtocolImporter.cs (9)
334MethodNames.Clear(); 426MethodNames.Clear(); 592fieldName = MethodNames.AddUnique(fieldName, mapping); 726string uniqueMethodName = MethodNames.AddUnique(CodeIdentifier.MakeValid(XmlConvert.DecodeName(methodName)), this.Operation); 732SoapParameters parameters = new SoapParameters(request, response, parameterOrder, MethodNames); 913string handlerName = MethodNames.AddUnique(uniqueMethodName + "Completed", uniqueMethodName); 914string asyncName = MethodNames.AddUnique(uniqueMethodName + "Async", uniqueMethodName); 915string callbackMember = MethodNames.AddUnique(uniqueMethodName + "OperationCompleted", uniqueMethodName); 916string callbackName = MethodNames.AddUnique("On" + uniqueMethodName + "OperationCompleted", uniqueMethodName);