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