Search Result

Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
xmlserializer
  •  

  • How can I use XMLSerializer and XML attributes to deserialize "numbered array"?

    I am trying to deserialize an non-standard XML array, returned by some sort of Perl web script, in a VB.NET client application.

    Take for example, the following XML:
    Code:
    <MyObject>
      <...other fields...>
      <MyItems>
        <Item1>abcdefg</Item1>
        <Length1>7</Length1>
        <Item2>abcd</Item2>
        <Length2>4</Length2>
    ...
    See more | Go to post

  • senglory
    started a topic XMlDeserizlizing issue
    in .NET

    XMlDeserizlizing issue

    XML:




    C# code:

    Code:
    [Serializable]
        public class ActionClass
        {
            [XmlElement(Form=XmlSchemaForm.Unqualified)]
            public string ActionType { get; set; }
            [XmlElement(Form = XmlSchemaForm.Unqualified)]
            public DateTime ActionDate { get; set; }
        }
    
    
    
    
        public class ActionModel : List<ActionClass>
    ...
    See more | Go to post
Working...