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