16 references to XmlRoot
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (16)
264root = a.XmlRoot; 735else if (a.XmlRoot != null && a.XmlRoot.Namespace != null) 736typeNs = a.XmlRoot.Namespace; 1343if (structAttrs.XmlRoot != null) 1345if (structAttrs.XmlRoot.ElementName.Length > 0) 1346xmlElement.ElementName = structAttrs.XmlRoot.ElementName; 1350if (structAttrs.XmlRoot.IsNullableSpecified) 1351xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1355xmlElement.Namespace = structAttrs.XmlRoot.Namespace; 1356xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1368else if (a.XmlRoot != null) 1370CheckNullable(a.XmlRoot.IsNullable, typeDesc, null); 2259string ns = a.XmlRoot == null ? defaultNamespace : a.XmlRoot.Namespace; 2270mapping.SetKeyInternal(XmlMapping.GenerateKey(type, a.XmlRoot, defaultNamespace));