Added ability to ship directly to elasticsearch.
This commit is contained in:
BIN
packages/RestSharp.104.4.0/RestSharp.104.4.0.nupkg
vendored
Normal file
BIN
packages/RestSharp.104.4.0/RestSharp.104.4.0.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/RestSharp.104.4.0/lib/net35-client/RestSharp.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/net35-client/RestSharp.dll
vendored
Normal file
Binary file not shown.
2714
packages/RestSharp.104.4.0/lib/net35-client/RestSharp.xml
vendored
Normal file
2714
packages/RestSharp.104.4.0/lib/net35-client/RestSharp.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/RestSharp.104.4.0/lib/net35/RestSharp.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/net35/RestSharp.dll
vendored
Normal file
Binary file not shown.
2714
packages/RestSharp.104.4.0/lib/net35/RestSharp.xml
vendored
Normal file
2714
packages/RestSharp.104.4.0/lib/net35/RestSharp.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/RestSharp.104.4.0/lib/net4-client/RestSharp.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/net4-client/RestSharp.dll
vendored
Normal file
Binary file not shown.
2890
packages/RestSharp.104.4.0/lib/net4-client/RestSharp.xml
vendored
Normal file
2890
packages/RestSharp.104.4.0/lib/net4-client/RestSharp.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/RestSharp.104.4.0/lib/net4/RestSharp.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/net4/RestSharp.dll
vendored
Normal file
Binary file not shown.
2890
packages/RestSharp.104.4.0/lib/net4/RestSharp.xml
vendored
Normal file
2890
packages/RestSharp.104.4.0/lib/net4/RestSharp.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.dll
vendored
Normal file
Binary file not shown.
3597
packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.xml
vendored
Normal file
3597
packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.dll
vendored
Normal file
BIN
packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.dll
vendored
Normal file
Binary file not shown.
2532
packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.xml
vendored
Normal file
2532
packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
packages/RestSharp.104.4.0/readme.txt
vendored
Normal file
22
packages/RestSharp.104.4.0/readme.txt
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
*** IMPORTANT CHANGE IN RESTSHARP VERSION 103 ***
|
||||
|
||||
In 103.0, JSON.NET was removed as a dependency.
|
||||
|
||||
If this is still installed in your project and no other libraries depend on
|
||||
it you may remove it from your installed packages.
|
||||
|
||||
There is one breaking change: the default Json*Serializer* is no longer
|
||||
compatible with Json.NET. To use Json.NET for serialization, copy the code
|
||||
from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs
|
||||
and register it with your client:
|
||||
|
||||
var client = new RestClient();
|
||||
client.JsonSerializer = new YourCustomSerializer();
|
||||
|
||||
The default Json*Deserializer* is mostly compatible, but it does not support
|
||||
all features which Json.NET has (like the ability to support a custom [JsonConverter]
|
||||
by decorating a certain property with an attribute). If you need these features, you
|
||||
must take care of the deserialization yourself to get it working.
|
||||
|
||||
If you run into any compatibility issues with deserialization,
|
||||
please report it to http://groups.google.com/group/restsharp
|
||||
Reference in New Issue
Block a user