11 references to SoapDocumentServiceAttribute
System.Web.Services (11)
System\Web\Services\Protocols\SoapReflector.cs (11)
127if (soapServiceAttribute is SoapDocumentServiceAttribute) { 128return ((SoapDocumentServiceAttribute)soapServiceAttribute).Use == SoapBindingUse.Encoded; 191object[] docServiceAttributes = type.GetCustomAttributes(typeof(SoapDocumentServiceAttribute), false); 205else if (soapServiceAttribute is SoapDocumentServiceAttribute) 206return ((SoapDocumentServiceAttribute)soapServiceAttribute).RoutingStyle; 249else if (serviceAttr is SoapDocumentServiceAttribute) { 251method.Use = ((SoapDocumentServiceAttribute)serviceAttr).Use; 287if (serviceAttr is SoapDocumentServiceAttribute) 288soapMethod.use = ((SoapDocumentServiceAttribute)serviceAttr).Use; 293if (serviceAttr is SoapDocumentServiceAttribute) 294soapMethod.paramStyle = ((SoapDocumentServiceAttribute)serviceAttr).ParameterStyle;