17 references to Document
System.ServiceModel (1)
System\ServiceModel\Description\MessageContractExporter.cs (1)
677
soapOperationBinding.Style = isRpc ? WsdlNS.SoapBindingStyle.Rpc : WsdlNS.SoapBindingStyle.
Document
;
System.Web.Services (16)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
1222
case global::System.Web.Services.Description.SoapBindingStyle.
@Document
: s = @"document"; break;
1282
case global::System.Web.Services.Description.SoapBindingStyle.
@Document
: s = @"document"; break;
1308
if (((global::System.Web.Services.Description.SoapBindingStyle)o.@Style) != global::System.Web.Services.Description.SoapBindingStyle.
@Document
) {
1355
if (((global::System.Web.Services.Description.SoapBindingStyle)o.@Style) != global::System.Web.Services.Description.SoapBindingStyle.
@Document
) {
5976
case @"document": return global::System.Web.Services.Description.SoapBindingStyle.
@Document
;
6038
case @"document": return global::System.Web.Services.Description.SoapBindingStyle.
@Document
;
System\Web\Services\Description\SoapFormatExtensions.cs (2)
15
SoapBindingStyle style = SoapBindingStyle.
Document
;
32
[XmlAttribute("style"), DefaultValue(SoapBindingStyle.
Document
)]
System\Web\Services\Description\SoapProtocolImporter.cs (2)
646
soapBindingStyle = SoapBindingStyle.
Document
;
1078
else if (soapBindingStyle == SoapBindingStyle.
Document
) {
System\Web\Services\Description\SoapProtocolReflector.cs (2)
68
OperationBinding.Extensions.Add(CreateSoapOperationBinding(soapMethod.rpc ? SoapBindingStyle.Rpc : SoapBindingStyle.
Document
, soapMethod.action));
233
style = SoapBindingStyle.
Document
;
System\Web\Services\Description\WebServicesInteroperability.cs (4)
94
SoapBindingStyle bindingStyle = soapBinding.Style == SoapBindingStyle.Default ? SoapBindingStyle.
Document
: soapBinding.Style;
165
SoapBodyBinding soapBodyBinding = FindSoapBodyBinding(true, bindingOperation.Input.Extensions, violations, opStyle == SoapBindingStyle.
Document
, bindingOperation.Name, binding.Name, description.TargetNamespace);
185
SoapBodyBinding soapBodyBinding = FindSoapBodyBinding(false, bindingOperation.Output.Extensions, violations, opStyle == SoapBindingStyle.
Document
, bindingOperation.Name, binding.Name, description.TargetNamespace);
224
violations.Add(opStyle == SoapBindingStyle.
Document
? "R2716" : "R2726", MessageString(fault, bindingOperation.Name, binding.Name, description.TargetNamespace, false, null));