2 writes to XmlRoot
System.Web.Services (1)
System\Web\Services\Protocols\SoapReflector.cs (1)
426member.XmlAttributes.XmlRoot = null; // Ignore XmlRoot attribute used by get/post
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\Configuration.cs (1)
28authorizedTypeAttributes.XmlRoot = new XmlRootAttribute("authorizedType");
21 references to XmlRoot
System.Web.Services (5)
System\Web\Services\Description\MimeXmlReflector.cs (1)
40XmlTypeMapping xmlTypeMapping = ReflectionContext.ReflectionImporter.ImportTypeMapping(methodInfo.ReturnType, a.XmlRoot);
System\Web\Services\Protocols\SoapReflector.cs (3)
490if (a.XmlRoot != null) { 493attr.ElementName = a.XmlRoot.ElementName; 494attr.Namespace = a.XmlRoot.Namespace;
System\Web\Services\Protocols\XmlReturnReader.cs (1)
36XmlTypeMapping mapping = importer.ImportTypeMapping(type, a.XmlRoot);
System.Xml (16)
System\Xml\Serialization\XmlReflectionImporter.cs (16)
238root = a.XmlRoot; 648else if (a.XmlRoot != null && a.XmlRoot.Namespace != null) 649typeNs = a.XmlRoot.Namespace; 1169if (structAttrs.XmlRoot != null) { 1170if (structAttrs.XmlRoot.ElementName.Length > 0) 1171xmlElement.ElementName = structAttrs.XmlRoot.ElementName; 1174if (structAttrs.XmlRoot.IsNullableSpecified) 1175xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1178xmlElement.Namespace = structAttrs.XmlRoot.Namespace; 1179xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1191else if (a.XmlRoot != null) { 1192CheckNullable(a.XmlRoot.IsNullable, typeDesc, null); 1960string ns = a.XmlRoot == null ? defaultNamespace : a.XmlRoot.Namespace; 1971mapping.SetKeyInternal(XmlMapping.GenerateKey(type, a.XmlRoot, defaultNamespace));