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 DataContract
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Akshay Patel (4)
Sardar Mudassar Ali Khan (1)
George (1)
Anupam Singh (1)
Pramod Thakur (1)
Sourav Kayal (1)
Sunil (1)
Ramesh Kartik (1)
Humza Tufail (1)
Rangesh Sripathi (1)
Anup Hosur (1)
Nipun Tomar (1)
Related resources for DataContract
No resource found
Using String-Based Enums in C#
6/10/2024 8:02:49 AM.
In many applications, it is necessary to represent enumerations with string values rather than their default integer values. This can be particularly useful when working with JSON, XML, or other data
WCF (2), Contracts In Various Types
4/28/2021 8:59:13 AM.
In this article, you will learn how to describe WCF Contracts in Various Types.
QueryString to Object (Custom Properties)
9/25/2019 12:37:36 AM.
In this article I have described how to handle a QueryString with minimal effort using the features of C#, reflection and generics.
What a DataContract and DataMember Are in WCF: Part 5
9/12/2019 5:19:15 AM.
In this article, we learn what datacontract and datamember are in WCF.
Understand WCF: Part 10: Attributes of DataContract and DataMember
9/11/2019 4:22:55 AM.
In this article, we will see how to add attributes to a Data Contract and Data Member.
WCF Programming for Beginners
8/29/2019 2:08:04 AM.
This article provides the basics for programming the WCF Service.
WCF Opt-In Vs. Opt-Out: Day 8
8/14/2019 3:54:33 AM.
In this article we will discuss two different approaches i.e. Opt-In and Opt-Out used by DataContractSerializer and XMLSerializer. We will also see the difference between DataContractSerializer and XM
WCF Serialization Part 2: Day 7
8/14/2019 3:43:56 AM.
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
WCF Serialization Part 1: Day 6
8/14/2019 3:19:21 AM.
In this article, we will discuss serialization in WCF. Default serializer in WCF and different kinds of serializers WCF supports.
WCF - Data Contract - Day 4
8/14/2019 2:24:24 AM.
This article explains about DataContract, DataContractAttribute and DataMemberAttribute. It also explains the properties of DataContractAttribute and DataMemberAttribute.
Data Contracts In WCF
9/4/2018 2:24:01 AM.
This article explains Data Contracts In WCF. Data Contract is an agreement between the client and server about the structure of data being exchanged.
Convert JSON To Strongly Typed Object Using DataContract In C#
6/30/2016 12:44:50 AM.
In this article, you will learn how to convert JSON to strongly typed objects using datacontract in C#.
KnownType Attribute in WCF
3/30/2015 12:22:08 PM.
This article explains how to use a known type in WCF and provides a basic understanding of WCF and DataContracts as the prerequisites.
Basics of DataContract
12/8/2010 4:25:01 PM.
DataContract is under namespace System.Runtime.Serialization. During design time, DataContract Attribute is used to indicate which class should be represented as XSD.
Serialize Object Using Json
9/7/2010 2:37:40 AM.
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.