2 instantiations of SoapDocumentMethodAttribute
System.Web.Services (2)
System\Web\Services\Protocols\SoapReflector.cs (2)
250SoapDocumentMethodAttribute method = new SoapDocumentMethodAttribute(); 255methodAttr = new SoapDocumentMethodAttribute();
10 references to SoapDocumentMethodAttribute
System.Web.Services (9)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
341typeof(SoapDocumentMethodAttribute),
System\Web\Services\Description\SoapProtocolImporter.cs (2)
431Type[] requiredTypes = new Type[] { typeof(SoapDocumentMethodAttribute), typeof(XmlAttributeAttribute), typeof(WebService), typeof(Object), typeof(DebuggerStepThroughAttribute), typeof(DesignerCategoryAttribute) }; 774EndMetadata(metadata, typeof(SoapDocumentMethodAttribute), soapOperationBinding.SoapAction);
System\Web\Services\Protocols\SoapReflector.cs (6)
178object[] docMethodAttributes = methodInfo.GetCustomAttributes(typeof(SoapDocumentMethodAttribute)); 213object[] attrs = method.GetCustomAttributes(typeof(SoapDocumentMethodAttribute)); 222binding = ((SoapDocumentMethodAttribute)attrs[0]).Binding; 250SoapDocumentMethodAttribute method = new SoapDocumentMethodAttribute(); 273SoapDocumentMethodAttribute attr = (SoapDocumentMethodAttribute)methodAttr;
System.Workflow.Activities (1)
InvokeWebService.cs (1)
339object[] attrs = method.GetCustomAttributes(typeof(SoapDocumentMethodAttribute), false);