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; 1356if (structAttrs.XmlRoot != null) 1358if (structAttrs.XmlRoot.ElementName.Length > 0) 1359xmlElement.ElementName = structAttrs.XmlRoot.ElementName; 1363if (structAttrs.XmlRoot.GetIsNullableSpecified()) 1364xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1368xmlElement.Namespace = structAttrs.XmlRoot.Namespace; 1369xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1381else if (a.XmlRoot != null) 1383CheckNullable(a.XmlRoot.IsNullable, typeDesc, null); 2308string? ns = a.XmlRoot == null ? defaultNamespace : a.XmlRoot.Namespace; 2319mapping.SetKeyInternal(XmlMapping.GenerateKey(type, a.XmlRoot, defaultNamespace));