Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6540053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:55:56+00:00 2026-05-25T10:55:56+00:00

I wanna serialize this class: [Serializable] [XmlRoot(ElementName = Rates)] public class CbrRate : IRate

  • 0

I wanna serialize this class:

[Serializable]
[XmlRoot(ElementName = "Rates")]
public class CbrRate : IRate
{
    public CbrRate()
    {
    }

    public CbrRate(DateTime date, ICurrency currency, decimal rate)
    {
        Currency = currency;
        Date = date;
        Rate = rate;
    }

    [XmlIgnore]
    public string SrcName
    {
        get { return "CBR"; }
    }

    [XmlElement(ElementName = "RequestDate")]
    public DateTime Date { get; set; }

    [XmlIgnore]
    public ICurrency Currency { get; set; }

    [XmlElement(ElementName = "Direction")]
    public string Direction
    {
        get { return "RUR=>" + CodeChar.Trim(); }
    }

    [XmlElement(ElementName = "RateValue")]
    public decimal Rate { get; set; }

    [XmlElement(ElementName = "RateBase")]
    public decimal BaseRate
    {
        get { return Math.Round(Rate/Nominal, 4); }
    }

    [XmlElement(ElementName = "RateCross")]
    public decimal CrossRate
    {
        get { return Math.Round(1.00M/BaseRate, 4); }
    }

    [XmlElement(ElementName = "CodeNum")]
    public int CodeNum
    {
        get { return Currency.CodeNumIso; }
    }

    [XmlElement(ElementName = "CodeISO")]
    public string CodeChar
    {
        get { return Currency.CodeCharIso; }
    }

    [XmlElement(ElementName = "CurrencyName")]
    public string Name
    {
        get { return Currency.Name; }
    }

    [XmlElement(ElementName = "Nominal")]
    public decimal Nominal
    {
        get { return Currency.Nominal; }
    }
}


public static XDocument Serialize<T>(this T source)
{
    var target = new XDocument();
    var s = new XmlSerializer(typeof (T));
    using (var writer = target.CreateWriter())
    {
        s.Serialize(writer, source);
        writer.Close();
    }
    return target;
}

But, that I have:

<?xml version="1.0" encoding="utf-16"?>
<ArrayOfCbrRate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CbrRate>
    <RequestDate>2011-09-05T18:49:55.1195696+04:00</RequestDate>
    <RateValue>31.0539</RateValue>
  </CbrRate>
...

How I can create correct xml, like this:

<ArrayOfRates>    
<Rates>
       <RequestDate></RequestDate>
       <Direction></Direction>
       <RateValue></RateValue>
       <RateBase></RateBase>
    ...
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:55:57+00:00Added an answer on May 25, 2026 at 10:55 am

    First of all, .Net XmlSerializer will only serialize read/write properties (or fields). That’s why only RequestDate and RateValue are serialized.

    In order to achieve the XML structure you mentioned, you need to create a wrapper class as Roel said.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanna place two child un-ordered lists side by side. They are having Class
I wanna rewrite links like index.php?page=entry&id=15&action=edit to entry/15/edit . This is how my .htaccess
I wanna verify a digitally signed xml against its schema definition while this schema
I wanna show some text (and images) in browser but this text shouldn't be
I wanna stretch this box incase If it doesn`t fit on background area how
I wanna know is this possible I pass get parameters for a javascript file
I got the following code: public class Alarm:IDisposable { MemoryStream _tmp; readonly XmlDocument _doc;
I wanna have a NSString object as NSData . Later this NSData-Object should return
I wanna declare a record inside a class as follows: class player (x, y)=
I wanna check radio buttons automatically: I tried this code but it does not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.