8 instantiations of XmlRoot
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (1)
21[XmlRoot("schema", Namespace = XmlSchema.Namespace)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataLocation.cs (1)
9[XmlRoot(ElementName = MetadataStrings.MetadataExchangeStrings.Location, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataReference.cs (1)
17[XmlRoot(ElementName = MetadataStrings.MetadataExchangeStrings.MetadataReference, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSection.cs (1)
17[XmlRoot(ElementName = MetadataStrings.MetadataExchangeStrings.MetadataSection, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (1)
16[XmlRoot(MetadataStrings.MetadataExchangeStrings.Metadata, Namespace = MetadataStrings.MetadataExchangeStrings.Namespace)]
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
54XmlRootAttribute xmlRoot = new XmlRootAttribute();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (1)
29[XmlRoot("definitions", Namespace = ServiceDescription.Namespace)]
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (1)
22[XmlRoot("webReferenceOptions", Namespace = WebReferenceOptions.TargetNamespace)]
22 references to XmlRoot
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlAttributes.cs (4)
44private XmlRootAttribute _xmlRoot; 152else if (attrib is XmlRootAttribute) 154_xmlRoot = (XmlRootAttribute)attrib; 289public XmlRootAttribute XmlRoot
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (1)
183string rootAttrName = typeof(XmlRootAttribute).FullName;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlMapping.cs (4)
122internal static string GenerateKey(Type type, XmlRootAttribute root, string ns) 126List<XmlRootAttribute> list = new List<XmlRootAttribute>(type.GetTypeInfo().GetCustomAttributes<XmlRootAttribute>());
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (3)
159public XmlTypeMapping ImportTypeMapping(Type type, XmlRootAttribute root) 168public XmlTypeMapping ImportTypeMapping(Type type, XmlRootAttribute root, string defaultNamespace) 259private ElementAccessor ImportElement(TypeModel model, XmlRootAttribute root, string defaultNamespace, RecursionLimiter limiter)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (3)
156public XmlSerializer(Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace) : 165public XmlSerializer(Type type, XmlRootAttribute root) : this(type, null, new Type[0], root, null, null) 255internal XmlSerializer(Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace, string location)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerFactory.cs (3)
34public XmlSerializer CreateSerializer(Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace) 43public XmlSerializer CreateSerializer(Type type, XmlRootAttribute root) 126public XmlSerializer CreateSerializer(Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace, string location)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\Globals.cs (1)
530s_typeOfXmlRootAttribute = typeof(XmlRootAttribute);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlDataContract.cs (2)
261XmlRootAttribute xmlRootAttribute = (XmlRootAttribute)xmlRootAttributes[0];
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
54XmlRootAttribute xmlRoot = new XmlRootAttribute();