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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:28:53+00:00 2026-06-12T13:28:53+00:00

I want to write a custom serializer for storing the session state into Azure

  • 0

I want to write a custom serializer for storing the session state into Azure Cache (Preview), so that means this custom serializer has to implement IDataCacheObjectSerializer (if I am wrong, please let me know). The reason why I need to write this custome serializer is i need to serialize some Linq objects which contain some System.Data.Linq.EntitySet attributes. And the default serializer NetDataContractSerializer cannot serialize the EntitySet.

My plan is to write a custom serializer by using DataContractSerializer (I searched some articles that mentioned DataContractSerializer can serialize EntitySet, so if I am wrong, let me know please), but the problem is how I can write a custom serializer that can support generic type.

Currently, my codes for custom serializer are like:

public class CustomSerializer : IDataCacheObjectSerializer
{
    public CustomSerializer()
    { }
    public object Deserialize(System.IO.Stream stream)
    {
        /* How can I know the type of object?????? */
        DataContractSerializer dcs = new DataContractSerializer("Type of object");
    }

    public void Serialize(System.IO.Stream stream, object value)
    {
        DataContractSerializer dcs = new DataContractSerializer(value.GetType());
        dcs.WriteObject(stream, value);
    }
}

By the way, I have changed the Linq Serialization Mode to “Unidirectional”

  • 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-06-12T13:28:54+00:00Added an answer on June 12, 2026 at 1:28 pm

    I did not work with IDataCacheObjectSerializer, but common solution looks like this:

    public sealed class CustomSerializer<T> : IDataCacheObjectSerializer
    {
        object IDataCacheObjectSerializer.Deserialize(System.IO.Stream stream)
        {       
            DataContractSerializer dcs = new DataContractSerializer(typeof(T));
            return dcs.ReadObject(stream);
        }
    
        void IDataCacheObjectSerializer.Serialize(System.IO.Stream stream, object value)
        {
            if (!(value is T)) 
            {
                throw new AgrumentException();
            }
            DataContractSerializer dcs = new DataContractSerializer(typeof(T));
            dcs.WriteObject(stream, value);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a custom control that's used like this: <HorizontalTick>Some string</HorizontalTick> It
I want to write a custom alarm for a Mac that awakes the mac
Question: I want to write a custom aggregate function that concatenates string on group
I have a program I'm writing that I want to write a custom logging
I'm solving algorithmical problems, and i want to write custom functions and predicates that
I want to write a custom class that behaves like dict - so, I
I want to write a custom view engine that returns custom text (like coma
I want to write a custom module that adjusts which columns are visible when
I want to write a custom validator which doesn't do anything before the user
I have a large data set and I want to write a custom merge

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.