16 references to XmlRoot
System.Private.Xml (16)
System\Xml\Serialization\XmlReflectionImporter.cs (16)
272root ??= a.XmlRoot; 736else if (a.XmlRoot != null && a.XmlRoot.Namespace != null) 737typeNs = a.XmlRoot.Namespace; 1354if (structAttrs.XmlRoot != null) 1356if (structAttrs.XmlRoot.ElementName.Length > 0) 1357xmlElement.ElementName = structAttrs.XmlRoot.ElementName; 1361if (structAttrs.XmlRoot.GetIsNullableSpecified()) 1362xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1366xmlElement.Namespace = structAttrs.XmlRoot.Namespace; 1367xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1379else if (a.XmlRoot != null) 1381CheckNullable(a.XmlRoot.IsNullable, typeDesc, null); 2306string? ns = a.XmlRoot == null ? defaultNamespace : a.XmlRoot.Namespace; 2317mapping.SetKeyInternal(XmlMapping.GenerateKey(type, a.XmlRoot, defaultNamespace));