1 write to SoapElement
System.ServiceModel (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
982member.SoapAttributes.SoapElement = new SoapElementAttribute(elementName.DecodedName);
8 references to SoapElement
System.ServiceModel (1)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
981if (member.SoapAttributes.SoapElement == null)
System.Xml (7)
System\Xml\Serialization\SoapReflectionImporter.cs (7)
663element.Name = XmlConvert.EncodeLocalName(a.SoapElement == null || a.SoapElement.ElementName.Length == 0 ? accessorName : a.SoapElement.ElementName); 666element.Mapping = ImportTypeMapping(modelScope.GetTypeModel(accessorType), (a.SoapElement == null ? String.Empty : a.SoapElement.DataType), limiter); 667if (a.SoapElement != null) 668element.IsNullable = a.SoapElement.IsNullable;