Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit e7c07f0

Browse files
committed
Update README.md
1 parent 6fde44c commit e7c07f0

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
follow [@demisbellot](http://twitter.com/demisbellot) and [@ServiceStack](http://twitter.com/servicestack)
33
for twitter updates.
44

5-
# The Home of [.NET's fastest JSON](http://www.servicestack.net/mythz_blog/?p=344), [JSV](http://www.servicestack.net/mythz_blog/?p=176) and CSV Text Serializers.
5+
# Home of [JSON](http://www.servicestack.net/mythz_blog/?p=344), [JSV](http://www.servicestack.net/mythz_blog/?p=176) and CSV Text Serializers used in [servicestack.net](http://www.servicestack.net).
6+
_Note: the source code is provided as-is - there is no commercial support available for ServiceStack_
67

7-
ServiceStack.Text is an **independent, dependency-free** serialization library that contains all of ServiceStack's text processing functionality, including:
8+
ServiceStack.Text is an **independent, dependency-free** serialization library that contains ServiceStack's text processing functionality, including:
89

910
* [JsonSerializer](http://www.servicestack.net/mythz_blog/?p=344)
1011
* [TypeSerializer (JSV-Format)](https://github.com/ServiceStack/ServiceStack.Text/wiki/JSV-Format)
@@ -13,13 +14,9 @@ ServiceStack.Text is an **independent, dependency-free** serialization library t
1314
* StringExtensions - Xml/Json/Csv/Url encoding, BaseConvert, Rot13, Hex escape, etc.
1415
* Stream, Reflection, List, DateTime, etc extensions and utils
1516

16-
Supports custom builds for: .NET 3.5+, Mono, MonoTouch/MonoDroid, Silverlight 4/5, XBOX, Windows Phone 7
17-
18-
All in a single **144kb** dependency-free ServiceStack.Text.dll
19-
2017
# Simple API
2118

22-
Like most of the interfaces in Service Stack, the API is simple and descriptive. In most cases these are the only methods that you would commonly use:
19+
Like most of the interfaces in Service Stack, the API is simple. Methods that you would commonly use include:
2320

2421
string TypeSerializer.SerializeToString<T>(T value)
2522
void TypeSerializer.SerializeToWriter<T>(T value, TextWriter writer)
@@ -73,9 +70,9 @@ String Utils:
7370
string SafeSubstring()
7471
string ToUtf8Bytes() / FromUtf8Bytes()
7572

76-
and many more String, Reflection, List, Dictionary, DateTime extensions...
73+
more String, Reflection, List, Dictionary, DateTime extensions...
7774

78-
### Supports Dynamic JSON as well
75+
### Supports Dynamic JSON
7976

8077
Although usually used to (de)serialize C#/.NET POCO types, it also includes a flexible API allowing you to deserialize any
8178
JSON payload without it's concrete type, see these real-world examples:
@@ -93,6 +90,7 @@ project. It provides a dynamic, but more succinct API than the above options.
9390

9491
![Install-Pacakage ServiceStack.Text](http://servicestack.net/img/nuget-servicestack.text.png)
9592

93+
_Note: the binary packages are provided as-is - there is no commercial support available for ServiceStack_
9694

9795
## ServiceStack.JsonSerializer - the fastest JSON Serializer for .NET
9896
For reasons outlined [in this blog post](http://www.servicestack.net/mythz_blog/?p=344) I decided to re-use *TypeSerializer's* text processing-core to create ServiceStack.JsonSerializer - the fastest JSON Serializer for .NET.

0 commit comments

Comments
 (0)