7 references to Operation
System.Web.Services (7)
System\Web\Services\Description\ProtocolImporter.cs (1)
146
return CodeIdentifier.MakeValid(XmlConvert.DecodeName(
Operation
.Name));
System\Web\Services\Description\SoapProtocolImporter.cs (6)
648
parameterOrder = this.
Operation
.ParameterOrder;
658
if (this.
Operation
.Messages.Output != null) {
681
requestMessageName = !String.IsNullOrEmpty(requestBinding.Name) && soapBindingStyle != SoapBindingStyle.Rpc ? requestBinding.Name : this.
Operation
.Name; // per WSDL 1.1 sec 3.5
685
responseMessageName = !String.IsNullOrEmpty(responseBinding.Name) && soapBindingStyle != SoapBindingStyle.Rpc ? responseBinding.Name : this.
Operation
.Name + "Response"; // per WSDL 1.1 sec 3.5
722
string methodName = CodeIdentifier.MakeValid(XmlConvert.DecodeName(this.
Operation
.Name));
726
string uniqueMethodName = MethodNames.AddUnique(CodeIdentifier.MakeValid(XmlConvert.DecodeName(methodName)), this.
Operation
);