Resources No resource found - How Can You Integrate A JSON Framework With iOSFeb 01, 2018. JavaScript Object Notation, or JSON in short, is commonly used for representing structural data and data interchange in client-server applications, serving as an alternative to XML. It has grown in popularity as it is simple to use and human-readable. It is technically a part of the JavaScript language and provides a way to serialize JavaScript objects. It is supported in a wide variety of programming languages. A lot of the services used every day have JSON-based APIs.
- JSON Serialization And Deserialization Using JSON.NET Library In C#Nov 19, 2015. In this article you will learn how to serialize and deserialize JSON object using JSON.NET library.
- A Simple Way To Deserialize JSONNov 18, 2015. In this article you will learn about an easy way to deserialize JSON.
- Deserializing Interface Properties With Json.NETMay 31, 2015. You can't deserialize something directly to an interface, You need a concrete class to instantiate. This can be done by following some easy steps.
- SharePoint 2010: JQuery Autocomplete Textbox Containing List ItemsJan 28, 2014. This article shows how to use the jQuery UI AutoComplete widget to consume a SharePoint Web Service (Lists.asmx) that is JSON Serialized.
- JSON Serialization Using Newtonsoft JSON SerializeDec 16, 2013. In this article we will use the Newtonsoft JSON serialization library to serialize JSON data.
- Web API With AJAX: Submit Form Data After SerializationDec 12, 2013. This article provides two ways to submit form data (save user's data) to the server; the first is to take data from each control and form it in JSON format and the second is to serialize an entire form's data and send it to the server.
- Understand jQuery Ajax Function: Pass JSON Data to Service MethodOct 31, 2013. In this article we will learn to send JSON data to Web Method and to return serialized JSON data in client part using JQuery ajax method.
- How to Consume Web API Using Web RequestJul 03, 2013. This article explains how to consume a Web API using a Web Request and deserialize it in JSON and bind data in a grid view.
- Serialize and Deserialize Objects by Using BinaryFormatterApr 09, 2013. In this article you will learn about Serialize and Deserialize Objects by Using BinaryFormatter.
- Serialize and Deserialize Using SoapFormatter Class in C#Apr 09, 2013. In this article you will learn about Serialize and Deserialize using SoapFormatter Class in C#.
- Create Your Own Custom File Type in VB.NETNov 09, 2012. 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.
- WCF Serialization Part 2: Day 7Oct 05, 2012. In this article we create an application, in this application we use a DataContractSerializer to serialize and deserialize data. We also see how we can use SvcUtil.exe
- CLR Object and JSON Serialization and DeserializationAug 27, 2012. This article demonstrates how to serialize and deserialize CLR objects for web-based applications.
- SoapFormatter in C#Jul 08, 2012. Sometimes you would need to store serialized objects as a file to access when needed.Here comes SoapFormatter handy!
- Generic Serializing and Deserializing Object as XML Data Using XmlSerializerApr 27, 2012. In this article we are going to see how to serialize and deserialize an object as XML data.
- Generic Way of Serializing and DeSerializing the Object as Binary Data Using Binary Formatter ASP.NET C#Apr 25, 2012. In this article we are going to see, how we serialize and deserialize an object as binary data in a generic way using the binary formatter.
- Serializing and Deserializing an Object as Binary Data Using Binary Formatter ASP.NET C#Apr 21, 2012. In this article we are going to see how to serialize and deserialize an object as binary data using the binary formatter.
- Serializing and Deserializing Object as XML Data Using XmlSerializerApr 21, 2012. In this article we are going to see how to serialize and deserialize an object as XML data.
- Serializing a DataSet Object as XMLJun 28, 2011. You can serialize a populated DataSet object to an XML file by executing the DataSet object’s WriteXml method.
- How to Bind Dropdown list using JSON, jQuery in ASP.NET 3.5Nov 01, 2010. In this project we use Newtonsoft.Json library makes working with JavaScript and JSON formatted data in .NET simple. Quickly read and write JSON using the JsonReader and JsonWriter or serialize your .NET objects with a single method call using the JsonSerializer.
- Serialize Object Using JsonSep 06, 2010. If you want to serialize any object to or from JSON (JavaScript object Notation). You can use DataContractJsonSerializer's WriteObject and ReadObject methods to serialize and deserialize respectively.
- XML Serialization/Deserialization of Immutable ObjectsApr 19, 2010. Here’s a brief example of how to serialize and deserialize immutable objects to XML.
- Introduction to JQuery: Part IXMar 23, 2010. In this article, we will cover few JQuery's AJAX functions.
- .Net Serialization using Soap FormatterMay 19, 2008. This article explains how to serialize objects using soap formatter which is used extensively in .Net Remoting.
- How to serialize an object using an ISerializable interface Feb 27, 2008. In this article I will show you how to serialize an object using ISerializable interface with a very simple manner.
- .NET Serialization to SQLite Database Jun 25, 2007. Most non-enterprise applications need the ability to store data locally. We'll explore 3 ways to serialize data to a SQLite database file with C#.
- Encrypted .NET Serialization to SQLite DatabaseJun 25, 2007. Sometimes, non-enterprise applications need the ability to store encrypted data locally. We'll explore 3 ways to serialize and encrypt data to a SQLite database file with C#.
- XML Serialization in .NET Framework 2.0 : Part IIMar 23, 2007. This article shows how to create classes that can be Serialized by using XML Serialization.
- XML Serialization in .NET Framework 2.0 : Part IMar 21, 2007. This article introduces serializing objects to XML format.
- Serializing and Deserializing XML StringJul 20, 2006. In this article we will see how we can serialize a xml sring into an object and vice versa. You can serialize your object to a byte array and can deSerialize the byte array into an object.
- Apply Object Serialization in Real Life SituationMar 30, 2006. Object serialization is a process of streaming an object into a byte array. This article explains the object serialization process using a real world example.
- Using SOAP Header and SOAP Extensions in a Web ServiceApr 12, 2004. In this article, we will develop a web service that would authenticate users for web sites. The web site needs to pass the user ID as well as the password for the user. Apart from this the web site also needs to pass the site’s ID and password.
- Saving and Reading Object to/from a DatabaseMar 25, 2002. An object is a memory stream, which is hard to write using the normal methods. In this article, I show how you can save objects in a database and read back from the database.
- Memory GameMar 19, 2002. This is a memory game where you can use your favorite pictures (.bmp, jpg, gif).
- Serializing Objects in C#May 14, 2001. In simple words serialization is a process of storing the object instance to a disk file. Serialization stores state of the object i.e. member variable values to disk. Deserialization is reverse of serialization.