TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About deserialization
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Scott Lysle (5)
Manas Mohapatra (3)
Sandeep Mishra (3)
Sandeep Singh Shekhawat (2)
Jitendra Mesavaniya (2)
Sanjay Kumar (1)
Prashanth Chindam (1)
Anup Hosur (1)
Vithal Wadje (1)
Ziggy Rafiq (1)
Adam Stirtan (1)
Sai Sherlekar (1)
Mithilesh Tata (1)
Anandu G Nath (1)
Bipin Joshi (1)
alex s (1)
Fahad Naeem (1)
Esamaldin Mohammed (1)
Adil Ansari (1)
Praveen Raveendran Pillai (1)
Adrian Strugała (1)
Sameer Shukla (1)
Akash Malik (1)
Sandeep Sharma (1)
Mayur Gujrathi (1)
Ibrahim Ersoy (1)
S.R.Ramadurai, K.Sreenivasan (1)
Matthew Cochran (1)
Hasibul Haque (1)
Abdul 0 (1)
Varun Bansal (1)
Related resources for deserialization
No resource found
Serialization and DeSerialization in C#
10/21/2024 10:18:19 AM.
Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binar
Serialization And Deserialization In C# Using Protobuf-net.dll
9/4/2024 6:53:55 AM.
This article describes how to implement serialization and deserialization using Protobuf-net.dll. This article explores Protobuf-net, a .NET library for efficient serialization and deserialization usi
Read XML in C#
5/31/2024 10:03:18 AM.
Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessl
Serialization And Deserialization in .NET
5/8/2024 10:11:00 AM.
Serialization in .NET transforms objects into a format suitable for storage or transmission, facilitating data interchange. Deserialization reverses this process, reconstructing objects from the seria
InProc Session State Mode in ASP.Net
5/8/2024 9:51:38 AM.
This article explains the InProc Session State Mode in ASP.NET. The InProc Session State Mode is the default Session State Mode. We can host multiple websites/web applications on a single IIS. Each ap
Consuming Web Service In ASP.NET MVC
4/29/2024 10:04:02 AM.
Consuming web services in ASP.NET MVC involves adding a service reference, generating a proxy class, and utilizing HTTP clients like HttpClient or WebClient. Data exchange occurs through SOAP or REST
Newtonsoft.Json vs. System.Text.Json: Comparative Analysis
4/17/2024 4:44:19 AM.
In the world of .NET development, handling JSON serialization and deserialization is a common task, especially when dealing with web APIs. In this article, we'll compare and contrast these two lib
A simplified approach to serializing and deserializing objects in C# 10
4/16/2024 10:48:12 AM.
This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
Polymorphic serialization using System.Text.Json
4/12/2024 5:50:15 AM.
Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each obj
What is JSON Serialization and Deserialization in C#
3/27/2024 6:23:31 AM.
JSON (JavaScript Object Notation) has become a ubiquitous data interchange format, especially in web development. In C#, developers have multiple options for serializing C# objects to JSON and deseria
Difference Between JSON Object and JavaScript Object
3/6/2024 9:23:15 AM.
JSON objects and JavaScript objects share similarities but differ in syntax and usage. JSON is a text-based data interchange format, while JavaScript objects are native data structures. JSON follows a
What is Serialization and Deserialization in C#?
3/4/2024 9:35:16 AM.
Serialization and deserialization are processes used to convert objects into a format that can be easily stored, transmitted, or persisted, and then reconstructed back into objects when needed.
JSON Serialization and Deserialization in C#
12/29/2023 4:57:42 AM.
JSON serialization and deserialization in C#! Learn the ropes with Newtonsoft.Json (Json.NET) or the built-in System.Text.Json. Level up your data interchange skills for seamless system communication.
JSON Serialization and Deserialization in C#
11/19/2023 5:20:30 AM.
In this article, you will learn about JSON serialization and deserialization in C#. We can implement JSON Serialization/Deserialization by using JavaScriptSerializer class, DataContractJsonSerializer
Serializing Objects In C#
10/16/2023 5:55:56 AM.
Serialization in C# is the process of converting an object into a stream of bytes to store the object to memory, a database, or a file. Its main purpose is to save the state of an object in order to b
.NET Class For Serialization
9/22/2023 8:42:33 AM.
In the .NET framework, serialization is the process of converting objects into a format that can be easily stored, transmitted, or reconstructed later. .NET provides various classes and libraries to f
Serialization and Deserialization in C#
6/15/2023 10:03:03 AM.
In this article you will learn about serialization in C# and deserialization In C#.
JSON Serialization And Deserialization Using JSON.NET Library In C#
3/13/2023 7:01:37 AM.
In this article, you will learn how to serialize and deserialize JSON objects using the JSON.NET library. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for hum
Create Generic HttpClient Call Function With Error Handling In C#
3/9/2023 11:01:52 AM.
This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling u
CLR Object And JSON Serialization And Deserialization
2/2/2023 10:49:02 AM.
This article demonstrates how to serialize and deserialize CLR objects for web-based applications.
XML Serialization and Deserialization in C#
8/23/2022 6:23:26 AM.
In this article I would like to demonstrate a generic XML Serialization/Deserialization process.
How To Work With Avro Data Type In .NET Environment
3/2/2022 2:09:40 PM.
The article shows an automated way of reading Avro data in .NET applications. It includes reading the Avro schema, generating C# models, and deserializing the data. The article contains also practical
Create Your Own Custom File Type
3/2/2022 9:01:26 AM.
This article describes a simple approach to creating a custom file type.
Pickle In Python
2/7/2022 10:31:29 AM.
The article explains Serialization / Deserialization process of object in Python
Real World .NET Examples Of Deserialization Vulnerabilities
10/28/2020 7:00:53 PM.
In this article, you will learn about real-world .NET examples of deserialization vulnerabilities.
Insecure Deserialization
10/9/2020 9:06:32 AM.
In this article, you will learn about Insecure Deserialization.
Deserialization Basics
10/8/2020 7:27:10 AM.
In this article, you will learn about the basics of Deserialization.
Serialization and Deserialization of JSON Data
4/8/2020 3:08:29 PM.
JavaScript Object Notation (JSON) is an open and text-based data exchange format.
Serialization Version Control In Java
9/19/2019 6:18:44 AM.
In this article I will be explaining about the version control in serialization.
Introduction To Deserialization In Java
9/17/2019 5:30:52 AM.
In this article we discuss Deserialization in java.
Prerequirement of REMOTING
4/13/2016 3:09:49 AM.
It is Microsoft technology for developing distributed applications, replacing traditional DCOM. All distributed technology needs consuming libraries present on remote machines.
An Application Framework for Editing Objects at Run Time in VB.NET
11/9/2012 10:52:19 AM.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
Build your own Visual Studio: An Application Framework for Editing Objects at Run Time
11/9/2012 10:27:19 AM.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio.
Create Your Own Custom File Type in VB.NET
11/9/2012 9:58:20 AM.
This article describes a simple approach to creating a custom file type. A separate module is used to serialize and deserialize files of this user defined file type.
XML Serialation and Deserialation in VB.NET
11/9/2012 9:31:17 AM.
The article helps you to write and read XML.
Web Services: Basics and Beyond Part 2
10/13/2012 4:22:57 AM.
This part shall demonstrate how a simple web service can be created quickly using Visual Studio.Net.
Build Your Own Visual Studio: An Application Framework for Editing Objects at Run Time
10/3/2012 10:37:52 AM.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
XML Serialization/Deserialization of Immutable Objects
9/29/2012 5:46:20 AM.
Here’s a brief example of how to serialize and deserialize immutable objects to XML.
Convert your Data Transfer Object to XML (XML Serialization and Deserialization)
9/29/2012 5:28:26 AM.
How to convert Business Entity/ Data Transfer Object to XML string and also XML string to Business Entity/ Data Transfer Object.
Parsing BizTalk Messages in .NET Components Through Orchestration
5/13/2012 4:03:23 AM.
This article discusses how to parse BizTalk messages in .NET Components through Orchestration.
Binary Serialization of a Class in a File
3/3/2012 10:42:33 PM.
In this article I will demonstrate how to use Binary serialization of a class in a file.