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