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 6366289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:24:09+00:00 2026-05-25T00:24:09+00:00

I have a doubt in serialization. example: interface IBase {} [DataContract] class Base :

  • 0

I have a doubt in serialization.

example:

interface IBase {}

[DataContract]
class Base : IBase
{
  [DataContract]
  public Derived Child{get;set;}
}

[DataContract]
[KnownType(typeof(Base))]
class Derived : Base
{
  [DataMember]
  public IBase Parrent {get;set;}
}

If I try to store an instance of Base class in IsolatedStorage, it is not getting executed; it hangs. Is there any way to do this ?

  • 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-25T00:24:10+00:00Added an answer on May 25, 2026 at 12:24 am

    Well, your attributes are all over the place – Base.Child is a [DataMember], not a [DataContract]. IIRC in phone 7 you need public types for serialization; and it is the base that needs informing of children. However; the IBase is another problem; that isn’t designated as a contract. If possible, change that to Base (not IBase), as the serializer needs to know about all concrete contracts.

    So:

    public interface IBase {}
    
    [DataContract]
    [KnownType(typeof(Derived))]
    public class Base : IBase
    {
        [DataMember]
        public Derived Child{get;set;}
    }
    
    [DataContract]
    public class Derived : Base
    {
        [DataMember]
        public Base Parent {get;set;}
    }
    

    Additionally, a Parent member is a big problem for tree serializers (and DataContractSerializer is a tree serializer, unless you explicitly enable full-graph mode).

    You might be able to get DCS to like IBase, but you’d need to investigate marking that as a contract and noting the concrete types. If you can’t get anywhere with that, I know protobuf-net supports that layout (although I haven’t tested that specifically for phone 7, but there is no fundamental reason it can’t work).

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

Sidebar

Related Questions

I have one doubt regarding casting. public void Test(out T a, out T b)
please help clarifying the doubt : While doing serialization, if we have defined the
I have this doubt from long time, When ever I write the class using
I have a doubt,.... How would you create a Singleton class in Flex... Is
I have a doubt. I need to get the data from the sever twice
I have a doubt about initializing string with synthesize keyword. In my Event.h class
I have doubt in creating objects in C++. Say I have a class called
Possible Duplicate: What is the difference between const and readonly? i have doubt in
I have a doubt: - Is there any standard/convention that when should I use
I have a doubt about orkut's new URL Writing method. Earlier the home page

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.