Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Introduction.html « Doc - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 108cdbbbc5397b5e63d2da381a687b2e00d6a023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
    <title>Introduction</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <link href="custom.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <div id="control">
        <span class="productTitle">Json.NET - Quick Starts & API Documentation</span><br />
        <span class="topicTitle">Introduction</span></div>
    <div id="content">
        <span style="color: DarkGray"></span>
        <p>
            Json.NET makes working with JSON formatted data in .NET
            simple. Quickly read and write JSON using LINQ to JSON or serialize
            your .NET objects with a single method call using the JsonSerializer.</p>
        <h3>
            Features</h3>
        <ul>
            <li>Flexible JSON serializer to convert .NET objects to JSON and back again</li>
            <li>LINQ to JSON for reading and writing JSON</li>
            <li>Writes indented, easy to read JSON</li>
            <li>Convert JSON to and from XML</li>
            <li>Supports Silverlight and the Compact Framework</li>
        </ul>
        <p>The JSON serializer is a good choice when the JSON you are reading or writing maps closely
        to a .NET class. The serializer automatically reads and writes JSON for the class.</p>
        <p class="MsoNormal">
            For situations where you are only interested in getting values from JSON, don&#39;t 
            have a class to serialize or deserialize to, or the JSON is radically different 
            from your class and you need to manually read and write from your objects then 
            LINQ to JSON is what you should use. LINQ to JSON allows you to easily read, 
            create and modify JSON in .NET.</p>
        <h3>
            History</h3>
        <p>
            Json.NET grew out of projects I was working on in late 2005 involving JavaScript,
            AJAX and .NET. At the time there were no libraries for working with JavaScript in
            .NET so I began to grow my own.</p>
        <p>
            Starting out as a couple of static methods for escaping JavaScript strings, Json.NET
            evolved as features were added. To add support for reading JSON a major refactor
            was required and Json.NET will split into the three major classes it still uses
            today, JsonReader, JsonWriter and JsonSerializer.
        </p>
        <p>
            Json.NET was first released in June 2006. Since then Json.NET has been downloaded
            thousands of times by developers and is used in a number of major projects open
            source projects including <a href="http://www.castleproject.org/monorail/index.html" target="_blank">MonoRail</a>,
            Castle Project's MVC web framework, and <a href="http://www.mono-project.com/" target="_blank">Mono</a>,
            an open source implementation
            of the .NET framework.</p>
        <p>
            <i>~ James Newton-King</i></p>
        <h3>
            Donate</h3>
        <p>
            Json.NET is a free open source project that I have developed in my personal time.</p>
            <p>
            I really appreciate your feedback and support for Json.NET and its future development.</p>
        <p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=james%40newtonking%2ecom&item_name=Supporting%20Json%2eNET&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">
            <img src="donate.gif" alt="Donate" style="border-width:0;" />
            </a></p>
        <div id="footer">
        </div>
    </div>
</body>
</html>