Tagged Questions
8
votes
3answers
4k views
What is the best way to parse an XML boolean attribute (in .NET)?
An XML attribute declared as xs:boolean can acceptable be "true", "false", "0" or "1". However, in .NET, Boolean.Parse() will only accept "true" or "false". If it sees a "0" or "1", it throws a "Bad ...
1
vote
1answer
183 views
How to use XmlElementAttribute for List<T>?
I have a class like this:
public class Level
{
[XmlAttribute]
public string Guid { get; set; }
}
public class LevelList : List<Level>
{
}
public class Test
{
public LevelList ...
0
votes
1answer
582 views
Visual Studio 2008 web reference proxy class doesn't decode xml attribute
I have a following issue:
I am writing client code for consumation of a web service. Here is the answer from the web service:
HTTP/1.0 200 OK
Content-Type: text/xml; charset=utf-8
Connection: close
...