1 write to Parts
System.ServiceModel (1)
System\ServiceModel\Description\SoapHelper.cs (1)
363
dest.
Parts
= src.Parts;
16 references to Parts
System.ServiceModel (2)
System\ServiceModel\Description\MessageContractImporter.cs (1)
1324
string[] messageParts = soapBodyBinding.
Parts
;
System\ServiceModel\Description\SoapHelper.cs (1)
363
dest.Parts = src.
Parts
;
System.Web.Services (14)
System\Web\Services\Description\SoapProtocolImporter.cs (2)
1107
if (soapBodyBinding.
Parts
== null) {
1112
parts = message.FindPartsByName(soapBodyBinding.
Parts
);
System\Web\Services\Description\WebServicesInteroperability.cs (12)
170
CheckMessageParts(message, soapBodyBinding.
Parts
, false, bindingOperation.Name, binding.Name, description.TargetNamespace, wireSignatures, violations);
173
multipleParts = multipleParts || (soapBodyBinding.
Parts
!= null && soapBodyBinding.
Parts
.Length > 1);
174
int bodyParts = soapBodyBinding.
Parts
== null ? 0 : soapBodyBinding.
Parts
.Length;
175
CheckMessageParts(message, soapBodyBinding.
Parts
, true, bindingOperation.Name, binding.Name, description.TargetNamespace, wireSignatures, violations);
190
CheckMessageParts(message, soapBodyBinding.
Parts
, false, bindingOperation.Name, binding.Name, description.TargetNamespace, null, violations);
193
multipleParts = multipleParts || (soapBodyBinding.
Parts
!= null && soapBodyBinding.
Parts
.Length > 1);
194
int bodyParts = soapBodyBinding.
Parts
== null ? 0 : soapBodyBinding.
Parts
.Length;
195
CheckMessageParts(message, soapBodyBinding.
Parts
, true, bindingOperation.Name, binding.Name, description.TargetNamespace, null, violations);