Мне нужно прочитать XmlTypeAttribute
из следующего класса, чтобы получить значение Namespace
:
<System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://webservices.micros.com/ows/5.1/Availability.wsdl")> _
Partial Public Class AvailabilityRequest
Inherits AvailRequestSegmentList
Private summaryOnlyField As Boolean
Private xsnField As System.Xml.Serialization.XmlSerializerNamespaces
'''<comentarios/>
<System.Xml.Serialization.XmlAttributeAttribute()> _
Public Property summaryOnly() As Boolean
Get
Return Me.summaryOnlyField
End Get
Set
Me.summaryOnlyField = value
End Set
End Property
С помощью следующего кода я могу получить значение для System.SerializableAttribute, но яневозможно получить информацию о XmlTypeAttribute.
var ar = typeof (AvailabilityRequest).GetType();
ar.GetCustomAttributes(true);
Обновление 2011.12.29
Теперь работает следующий код:
var xmlAttribute = (XmlTypeAttribute)Attribute.GetCustomAttribute(
typeof(AvailabilityRequest),
typeof(XmlTypeAttribute)
);
XNamespace ns = xmlAttribute.Namespace;
ns.NamespaceName.Should().Be.EqualTo("http://webservices.micros.com/ows/5.1/Availability.wsdl");