I'm attempting to convert some existing C# code into a Portable Class Library project, profile 111. Here is the code I'm stuck on:
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] OtherAttributes
{
get
{
return this._otherAttributes;
}
set
{
this._otherAttributes = value;
}
}
What is the equivalent of that in PCL land? I see that the XmlSerializer
compiles fine. The XmlAnyAttributeAttribute
exists, but the XmlAttribute
type does not.