diff --git a/NzbDrone.App.Test/NzbDrone.App.Test.csproj b/NzbDrone.App.Test/NzbDrone.App.Test.csproj index 2ce65002a..0f31f77e4 100644 --- a/NzbDrone.App.Test/NzbDrone.App.Test.csproj +++ b/NzbDrone.App.Test/NzbDrone.App.Test.csproj @@ -33,8 +33,8 @@ x86 - - ..\packages\NBuilder.3.0.1\lib\FizzWare.NBuilder.dll + + ..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll False diff --git a/NzbDrone.App.Test/packages.config b/NzbDrone.App.Test/packages.config index f8f24d5f2..cb15edd13 100644 --- a/NzbDrone.App.Test/packages.config +++ b/NzbDrone.App.Test/packages.config @@ -2,7 +2,7 @@ - + \ No newline at end of file diff --git a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj index d86f0e089..14a926f42 100644 --- a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj +++ b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj @@ -37,8 +37,7 @@ True - False - ..\packages\NBuilder.3.0.1\lib\FizzWare.NBuilder.dll + ..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll False diff --git a/NzbDrone.Core.Test/packages.config b/NzbDrone.Core.Test/packages.config index 2b248334a..2cce5a8be 100644 --- a/NzbDrone.Core.Test/packages.config +++ b/NzbDrone.Core.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/NzbDrone.Core/GettingStarted.txt b/NzbDrone.Core/GettingStarted.txt new file mode 100644 index 000000000..2a261b11c --- /dev/null +++ b/NzbDrone.Core/GettingStarted.txt @@ -0,0 +1,46 @@ + ___ ___ ___ ___ __ __ ___ __ _ _ _ + | | | | | | |__ |__) | / |__ |__) | | + | |/\| | | | |___ | \ | /_ |___ | \ _|_|_ + +Q) Which files do I need? +A) More than likely, you only need Twitterizer2.dll and Newtonsoft.Json.dll + +Q) What exactly are all these files? +A) + Twitterizer2.dll + This is the main binary which contains the core class library. This file is required for all addon + libraries. + + Twitterizer2.Data.dll + This is an additional library that provides data conversion functionality. + For example, with it you can quickly generate DataTables from any Twitterizer2 collection. + This file is not necessary for most projects. + + Newtonsoft.Json.dll + This is JSON.NET, developed by James Newton-King. You do not need to add a reference in your + project to this library, but it must be placed in your project's bin folder along with Twitterizer2.dll. + More information can be found here: http://james.newtonking.com/pages/json-net.aspx + + Twitterizer2.Async.dll + This is an addon library that allows developers to call Twitterizer2 methods asynchronously. + This file is not necessary for most projects. + + Twitterizer2.Streaming.dll + This is an addon library that provides access to the Streaming API. + This file is not necessary for most projects. + + Twitterizer.OAuth.dll + This is a standalone library that provides access to our OAuth request signing functionality without + using Twitterizer2. _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. + All of the functionality found in this library is available within Twitterizer2.dll. + This file is not necessary for most projects. + + Twitterizer2lite.dll + This is a slimmed down version of the Twitterizer2.dll file built with the client profile as the target framework. + It will lack some extra pieces of functionality, such as the built-in data caching and support for application + configuration settings. + _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. + This file is not necessary for most projects. + +Q) What about the license files? +A) The license files must accompany the dlls. That means that they must be distributed along with your application. \ No newline at end of file diff --git a/NzbDrone.Core/Json.NET.license.txt b/NzbDrone.Core/Json.NET.license.txt new file mode 100644 index 000000000..c96b57855 --- /dev/null +++ b/NzbDrone.Core/Json.NET.license.txt @@ -0,0 +1,7 @@ +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index 9044ead71..a7454c575 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -142,6 +142,9 @@ False ..\packages\MiniProfiler.1.9\lib\net40\MvcMiniProfiler.dll + + ..\packages\Newtonsoft.Json.4.0.4\lib\net40\Newtonsoft.Json.dll + ..\packages\Ninject.2.2.1.4\lib\net40-Full\Ninject.dll @@ -170,8 +173,9 @@ False ..\Libraries\TvdbLib.dll - - ..\packages\twitterizer.2.3.3\lib\35\Twitterizer2.dll + + False + ..\packages\twitterizer.2.4.0.26532\lib\net40\Twitterizer2.dll @@ -357,6 +361,8 @@ + + diff --git a/NzbDrone.Core/packages.config b/NzbDrone.Core/packages.config index 0bdd610cd..e07a842bd 100644 --- a/NzbDrone.Core/packages.config +++ b/NzbDrone.Core/packages.config @@ -3,9 +3,9 @@ - + - + \ No newline at end of file diff --git a/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj b/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj index 8484b9288..225903b5e 100644 --- a/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj +++ b/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj @@ -38,8 +38,8 @@ - - ..\packages\NBuilder.3.0.1\lib\FizzWare.NBuilder.dll + + ..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll False diff --git a/NzbDrone.Update.Test/packages.config b/NzbDrone.Update.Test/packages.config index e03c1d022..fcd24ea7b 100644 --- a/NzbDrone.Update.Test/packages.config +++ b/NzbDrone.Update.Test/packages.config @@ -2,6 +2,6 @@ - + \ No newline at end of file diff --git a/NzbDrone.Update/Program.cs b/NzbDrone.Update/Program.cs index e64607ecd..60c54f64b 100644 --- a/NzbDrone.Update/Program.cs +++ b/NzbDrone.Update/Program.cs @@ -51,7 +51,7 @@ private static void TransferUpdateLogs() { var enviromentProvider = _kernel.Get(); var diskProvider = _kernel.Get(); - logger.Info("Copying log tiles to application directory."); + logger.Info("Copying log files to application directory."); diskProvider.CopyDirectory(enviromentProvider.GetSandboxLogFolder(), enviromentProvider.GetUpdateLogFolder()); } catch (Exception e) diff --git a/NzbDrone.Web/Web.config b/NzbDrone.Web/Web.config index 86683704f..ed6f3d815 100644 --- a/NzbDrone.Web/Web.config +++ b/NzbDrone.Web/Web.config @@ -9,7 +9,7 @@ - + @@ -49,6 +49,10 @@ + + + + diff --git a/packages/NBuilder.3.0.1.1/NBuilder.3.0.1.1.nupkg b/packages/NBuilder.3.0.1.1/NBuilder.3.0.1.1.nupkg new file mode 100644 index 000000000..06b5436cb Binary files /dev/null and b/packages/NBuilder.3.0.1.1/NBuilder.3.0.1.1.nupkg differ diff --git a/packages/NBuilder.3.0.1/lib/FizzWare.NBuilder.dll b/packages/NBuilder.3.0.1.1/lib/FizzWare.NBuilder.dll similarity index 100% rename from packages/NBuilder.3.0.1/lib/FizzWare.NBuilder.dll rename to packages/NBuilder.3.0.1.1/lib/FizzWare.NBuilder.dll diff --git a/packages/NBuilder.3.0.1/NBuilder.3.0.1.nupkg b/packages/NBuilder.3.0.1/NBuilder.3.0.1.nupkg deleted file mode 100644 index c1f1be45d..000000000 Binary files a/packages/NBuilder.3.0.1/NBuilder.3.0.1.nupkg and /dev/null differ diff --git a/packages/NBuilder.3.0.1/lib/Silverlight 3.0/FizzWare.NBuilder-Silverlight.dll b/packages/NBuilder.3.0.1/lib/Silverlight 3.0/FizzWare.NBuilder-Silverlight.dll deleted file mode 100644 index cad1f60ab..000000000 Binary files a/packages/NBuilder.3.0.1/lib/Silverlight 3.0/FizzWare.NBuilder-Silverlight.dll and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg b/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg deleted file mode 100644 index e3cc59ee5..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll deleted file mode 100644 index 5b9827df6..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb deleted file mode 100644 index 64dd9ef91..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll deleted file mode 100644 index 4703b8905..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb deleted file mode 100644 index df5da99c6..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll deleted file mode 100644 index 5bbb778d7..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll and /dev/null differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb deleted file mode 100644 index ba470270a..000000000 Binary files a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb and /dev/null differ diff --git a/packages/Newtonsoft.Json.4.0.4/Newtonsoft.Json.4.0.4.nupkg b/packages/Newtonsoft.Json.4.0.4/Newtonsoft.Json.4.0.4.nupkg new file mode 100644 index 000000000..ab50f8a38 Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/Newtonsoft.Json.4.0.4.nupkg differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.dll new file mode 100644 index 000000000..1f0dd710d Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.pdb new file mode 100644 index 000000000..7fc752b6f Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.xml new file mode 100644 index 000000000..17ae2bbe2 --- /dev/null +++ b/packages/Newtonsoft.Json.4.0.4/lib/net20/Newtonsoft.Json.xml @@ -0,0 +1,7859 @@ + + + + Newtonsoft.Json + + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets the type of the current Json token. + + + + + Gets the text value of the current Json token. + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token. + + The to read the token from. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Indicates how the output is formatted. + + + + + Initializes a new instance of the class. + + The stream. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Converts a binary value to and from a base 64 string value. + + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + A cached representation of the Enum string representation to respect per Enum field name. + + The type of the Enum. + A map of enum field name to either the field name, or the configured enum member name (). + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Provides a set of static (Shared in Visual Basic) methods for + querying objects that implement . + + + + + Returns the input typed as . + + + + + Returns an empty that has the + specified type argument. + + + + + Converts the elements of an to the + specified type. + + + + + Filters the elements of an based on a specified type. + + + + + Generates a sequence of integral numbers within a specified range. + + The value of the first integer in the sequence. + The number of sequential integers to generate. + + + + Generates a sequence that contains one repeated value. + + + + + Filters a sequence of values based on a predicate. + + + + + Filters a sequence of values based on a predicate. + Each element's index is used in the logic of the predicate function. + + + + + Projects each element of a sequence into a new form. + + + + + Projects each element of a sequence into a new form by + incorporating the element's index. + + + + + Projects each element of a sequence to an + and flattens the resulting sequences into one sequence. + + + + + Projects each element of a sequence to an , + and flattens the resulting sequences into one sequence. The + index of each source element is used in the projected form of + that element. + + + + + Projects each element of a sequence to an , + flattens the resulting sequences into one sequence, and invokes + a result selector function on each element therein. + + + + + Projects each element of a sequence to an , + flattens the resulting sequences into one sequence, and invokes + a result selector function on each element therein. The index of + each source element is used in the intermediate projected form + of that element. + + + + + Returns elements from a sequence as long as a specified condition is true. + + + + + Returns elements from a sequence as long as a specified condition is true. + The element's index is used in the logic of the predicate function. + + + + + Base implementation of First operator. + + + + + Returns the first element of a sequence. + + + + + Returns the first element in a sequence that satisfies a specified condition. + + + + + Returns the first element of a sequence, or a default value if + the sequence contains no elements. + + + + + Returns the first element of the sequence that satisfies a + condition or a default value if no such element is found. + + + + + Base implementation of Last operator. + + + + + Returns the last element of a sequence. + + + + + Returns the last element of a sequence that satisfies a + specified condition. + + + + + Returns the last element of a sequence, or a default value if + the sequence contains no elements. + + + + + Returns the last element of a sequence that satisfies a + condition or a default value if no such element is found. + + + + + Base implementation of Single operator. + + + + + Returns the only element of a sequence, and throws an exception + if there is not exactly one element in the sequence. + + + + + Returns the only element of a sequence that satisfies a + specified condition, and throws an exception if more than one + such element exists. + + + + + Returns the only element of a sequence, or a default value if + the sequence is empty; this method throws an exception if there + is more than one element in the sequence. + + + + + Returns the only element of a sequence that satisfies a + specified condition or a default value if no such element + exists; this method throws an exception if more than one element + satisfies the condition. + + + + + Returns the element at a specified index in a sequence. + + + + + Returns the element at a specified index in a sequence or a + default value if the index is out of range. + + + + + Inverts the order of the elements in a sequence. + + + + + Returns a specified number of contiguous elements from the start + of a sequence. + + + + + Bypasses a specified number of elements in a sequence and then + returns the remaining elements. + + + + + Bypasses elements in a sequence as long as a specified condition + is true and then returns the remaining elements. + + + + + Bypasses elements in a sequence as long as a specified condition + is true and then returns the remaining elements. The element's + index is used in the logic of the predicate function. + + + + + Returns the number of elements in a sequence. + + + + + Returns a number that represents how many elements in the + specified sequence satisfy a condition. + + + + + Returns an that represents the total number + of elements in a sequence. + + + + + Returns an that represents how many elements + in a sequence satisfy a condition. + + + + + Concatenates two sequences. + + + + + Creates a from an . + + + + + Creates an array from an . + + + + + Returns distinct elements from a sequence by using the default + equality comparer to compare values. + + + + + Returns distinct elements from a sequence by using a specified + to compare values. + + + + + Creates a from an + according to a specified key + selector function. + + + + + Creates a from an + according to a specified key + selector function and a key comparer. + + + + + Creates a from an + according to specified key + and element selector functions. + + + + + Creates a from an + according to a specified key + selector function, a comparer and an element selector function. + + + + + Groups the elements of a sequence according to a specified key + selector function. + + + + + Groups the elements of a sequence according to a specified key + selector function and compares the keys by using a specified + comparer. + + + + + Groups the elements of a sequence according to a specified key + selector function and projects the elements for each group by + using a specified function. + + + + + Groups the elements of a sequence according to a specified key + selector function and creates a result value from each group and + its key. + + + + + Groups the elements of a sequence according to a key selector + function. The keys are compared by using a comparer and each + group's elements are projected by using a specified function. + + + + + Groups the elements of a sequence according to a specified key + selector function and creates a result value from each group and + its key. The elements of each group are projected by using a + specified function. + + + + + Groups the elements of a sequence according to a specified key + selector function and creates a result value from each group and + its key. The keys are compared by using a specified comparer. + + + + + Groups the elements of a sequence according to a specified key + selector function and creates a result value from each group and + its key. Key values are compared by using a specified comparer, + and the elements of each group are projected by using a + specified function. + + + + + Applies an accumulator function over a sequence. + + + + + Applies an accumulator function over a sequence. The specified + seed value is used as the initial accumulator value. + + + + + Applies an accumulator function over a sequence. The specified + seed value is used as the initial accumulator value, and the + specified function is used to select the result value. + + + + + Produces the set union of two sequences by using the default + equality comparer. + + + + + Produces the set union of two sequences by using a specified + . + + + + + Returns the elements of the specified sequence or the type + parameter's default value in a singleton collection if the + sequence is empty. + + + + + Returns the elements of the specified sequence or the specified + value in a singleton collection if the sequence is empty. + + + + + Determines whether all elements of a sequence satisfy a condition. + + + + + Determines whether a sequence contains any elements. + + + + + Determines whether any element of a sequence satisfies a + condition. + + + + + Determines whether a sequence contains a specified element by + using the default equality comparer. + + + + + Determines whether a sequence contains a specified element by + using a specified . + + + + + Determines whether two sequences are equal by comparing the + elements by using the default equality comparer for their type. + + + + + Determines whether two sequences are equal by comparing their + elements by using a specified . + + + + + Base implementation for Min/Max operator. + + + + + Base implementation for Min/Max operator for nullable types. + + + + + Returns the minimum value in a generic sequence. + + + + + Invokes a transform function on each element of a generic + sequence and returns the minimum resulting value. + + + + + Returns the maximum value in a generic sequence. + + + + + Invokes a transform function on each element of a generic + sequence and returns the maximum resulting value. + + + + + Makes an enumerator seen as enumerable once more. + + + The supplied enumerator must have been started. The first element + returned is the element the enumerator was on when passed in. + DO NOT use this method if the caller must be a generator. It is + mostly safe among aggregate operations. + + + + + Sorts the elements of a sequence in ascending order according to a key. + + + + + Sorts the elements of a sequence in ascending order by using a + specified comparer. + + + + + Sorts the elements of a sequence in descending order according to a key. + + + + + Sorts the elements of a sequence in descending order by using a + specified comparer. + + + + + Performs a subsequent ordering of the elements in a sequence in + ascending order according to a key. + + + + + Performs a subsequent ordering of the elements in a sequence in + ascending order by using a specified comparer. + + + + + Performs a subsequent ordering of the elements in a sequence in + descending order, according to a key. + + + + + Performs a subsequent ordering of the elements in a sequence in + descending order by using a specified comparer. + + + + + Base implementation for Intersect and Except operators. + + + + + Produces the set intersection of two sequences by using the + default equality comparer to compare values. + + + + + Produces the set intersection of two sequences by using the + specified to compare values. + + + + + Produces the set difference of two sequences by using the + default equality comparer to compare values. + + + + + Produces the set difference of two sequences by using the + specified to compare values. + + + + + Creates a from an + according to a specified key + selector function. + + + + + Creates a from an + according to a specified key + selector function and key comparer. + + + + + Creates a from an + according to specified key + selector and element selector functions. + + + + + Creates a from an + according to a specified key + selector function, a comparer, and an element selector function. + + + + + Correlates the elements of two sequences based on matching keys. + The default equality comparer is used to compare keys. + + + + + Correlates the elements of two sequences based on matching keys. + The default equality comparer is used to compare keys. A + specified is used to compare keys. + + + + + Correlates the elements of two sequences based on equality of + keys and groups the results. The default equality comparer is + used to compare keys. + + + + + Correlates the elements of two sequences based on equality of + keys and groups the results. The default equality comparer is + used to compare keys. A specified + is used to compare keys. + + + + + Computes the sum of a sequence of nullable values. + + + + + Computes the sum of a sequence of nullable + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of nullable values. + + + + + Computes the average of a sequence of nullable values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Computes the sum of a sequence of values. + + + + + Computes the sum of a sequence of + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of values. + + + + + Computes the average of a sequence of values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Returns the minimum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the minimum nullable value. + + + + + Returns the maximum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the maximum nullable value. + + + + + Computes the sum of a sequence of nullable values. + + + + + Computes the sum of a sequence of nullable + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of nullable values. + + + + + Computes the average of a sequence of nullable values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Computes the sum of a sequence of values. + + + + + Computes the sum of a sequence of + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of values. + + + + + Computes the average of a sequence of values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Returns the minimum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the minimum nullable value. + + + + + Returns the maximum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the maximum nullable value. + + + + + Computes the sum of a sequence of nullable values. + + + + + Computes the sum of a sequence of nullable + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of nullable values. + + + + + Computes the average of a sequence of nullable values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Computes the sum of a sequence of values. + + + + + Computes the sum of a sequence of + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of values. + + + + + Computes the average of a sequence of values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Returns the minimum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the minimum nullable value. + + + + + Returns the maximum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the maximum nullable value. + + + + + Computes the sum of a sequence of nullable values. + + + + + Computes the sum of a sequence of nullable + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of nullable values. + + + + + Computes the average of a sequence of nullable values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Computes the sum of a sequence of values. + + + + + Computes the sum of a sequence of + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of values. + + + + + Computes the average of a sequence of values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Returns the minimum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the minimum nullable value. + + + + + Returns the maximum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the maximum nullable value. + + + + + Computes the sum of a sequence of nullable values. + + + + + Computes the sum of a sequence of nullable + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of nullable values. + + + + + Computes the average of a sequence of nullable values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Computes the sum of a sequence of values. + + + + + Computes the sum of a sequence of + values that are obtained by invoking a transform function on + each element of the input sequence. + + + + + Computes the average of a sequence of values. + + + + + Computes the average of a sequence of values + that are obtained by invoking a transform function on each + element of the input sequence. + + + + + Returns the minimum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the minimum nullable value. + + + + + Returns the maximum value in a sequence of nullable + values. + + + + + Invokes a transform function on each element of a sequence and + returns the maximum nullable value. + + + + + Represents a collection of objects that have a common key. + + + + + Gets the key of the . + + + + + This attribute allows us to define extension methods without + requiring .NET Framework 3.5. For more information, see the section, + Extension Methods in .NET Framework 2.0 Apps, + of Basic Instincts: Extension Methods + column in MSDN Magazine, + issue Nov 2007. + + + + + Defines an indexer, size property, and Boolean search method for + data structures that map keys to + sequences of values. + + + + + Represents a sorted sequence. + + + + + Performs a subsequent ordering on the elements of an + according to a key. + + + + + Represents a collection of keys each mapped to one or more values. + + + + + Determines whether a specified key is in the . + + + + + Applies a transform function to each key and its associated + values and returns the results. + + + + + Returns a generic enumerator that iterates through the . + + + + + Gets the number of key/value collection pairs in the . + + + + + Gets the collection of values indexed by the specified key. + + + + + See issue #11 + for why this method is needed and cannot be expressed as a + lambda at the call site. + + + + + See issue #11 + for why this method is needed and cannot be expressed as a + lambda at the call site. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + Type of the property. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a raw JSON string. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Represents an abstract JSON token. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Specifies reference handling options for the . + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Specifies default value handling options for the . + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Specifies the member serialization options for the . + + + + + All members are serialized by default. Members can be excluded using the . + + + + + Only members must be marked with the are serialized. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. + + + + + The time represented is local time. + + + + + The time represented is UTC. + + + + + The time represented is not specified as either local time or Coordinated Universal Time (UTC). + + + + + Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + + + Converts XML to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Represents a collection of . + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Represents a token that can contain other tokens. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + Represents a JSON object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Represents a JSON array. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Used by to resolves a for a given . + + + + + Used by to resolves a for a given . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Get and set values for a using dynamic methods. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides information surrounding an error. + + + + + Gets or sets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets the member converter. + + The member converter. + + + + Gets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets the property null value handling. + + The null value handling. + + + + Gets the property default value handling. + + The default value handling. + + + + Gets the property reference loop handling. + + The reference loop handling. + + + + Gets the property object creation handling. + + The object creation handling. + + + + Gets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a method that constructs an object. + + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Always include the .NET type name when serializing. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The culture to use when converting. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + If set to true ignore case. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the maximum valid value of an Enum type. Flags enums are ORed. + + The type of the returned value. Must be assignable from the enum's underlying value type. + The enum type to get the maximum value for. + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Returns the index of the first occurrence in a sequence by using the default equality comparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Tests whether the list's items are their unitialized value. + + The list. + Whether the list's items are their unitialized value + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string contains white space. + + The string to test for white space. + + true if the string contains white space; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Ensures the target string ends with the specified string. + + The target. + The value. + The target string with the value string at the end. + + + + Perform an action if the string is not null or empty. + + The value. + The action to perform. + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + The indent character. + + + + + Numbers the lines. + + The string to number. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.dll new file mode 100644 index 000000000..f6fb5988c Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.pdb new file mode 100644 index 000000000..a81921d55 Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.xml similarity index 86% rename from packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml rename to packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.xml index 6d6e36251..711ec08b7 100644 --- a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml +++ b/packages/Newtonsoft.Json.4.0.4/lib/net35/Newtonsoft.Json.xml @@ -1,26 +1,9 @@ - Newtonsoft.Json.Net20 + Newtonsoft.Json - - - Represents a BSON Oid (object id). - - - - - Initializes a new instance of the class. - - The Oid value. - - - - Gets or sets the value of the Oid. - - The value of the Oid. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. @@ -48,6 +31,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Skips the children of the current token. @@ -93,6 +88,16 @@ The current reader state. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + Gets the quotation mark character used to enclose the value of a string. @@ -211,6 +216,20 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + + A . + + Reads the next JSON token from the stream. @@ -219,6 +238,19 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + Gets or sets a value indicating whether the root object will be read as a JSON array. @@ -439,6 +471,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. @@ -523,12 +573,36 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. The value to write. + + + Writes a value. + + The value to write. + Writes a value. @@ -548,6 +622,16 @@ The string of white space characters. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + Gets the top. @@ -621,6 +705,11 @@ The name of the property. + + + Closes this stream and the underlying stream. + + Writes a null value. @@ -721,12 +810,36 @@ The value to write. + + + Writes a value. + + The value to write. + Writes a value. The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value that represents a BSON object id. @@ -747,20 +860,22 @@ The used when writing values to BSON. - + - Specifies how constructors are used when initializing objects during deserialization by the . + Represents a BSON Oid (object id). - + - First attempt to use the public default constructor then fall back to single paramatized constructor. + Initializes a new instance of the class. + The Oid value. - + - Allow Json.NET to use a non-public default constructor. + Gets or sets the value of the Oid. + The value of the Oid. @@ -844,86 +959,6 @@ true if this instance can convert the specified object type; otherwise, false. - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Create a custom object - - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Creates an object which will then be populated by the serializer. - - Type of the object. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - Converts a to and from JSON. @@ -988,6 +1023,54 @@ true if this instance can convert the specified value type; otherwise, false. + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + Provides a base class for converting a to and from JSON. @@ -1002,6 +1085,38 @@ true if this instance can convert the specified object type; otherwise, false. + + + Converts an Entity Framework EntityKey to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + Converts a to and from JSON. @@ -1034,6 +1149,38 @@ true if this instance can convert the specified object type; otherwise, false. + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + Converts a to and from JSON and BSON. @@ -1070,6 +1217,9 @@ Converts an to and from its name string value. + + Converts an to and from its name string value. + @@ -1089,28 +1239,61 @@ The calling serializer. The object value. + + + A cached representation of the Enum string representation to respect per Enum field name. + + The type of the Enum. + A map of enum field name to either the field name, or the configured enum member name (). + Determines whether this instance can convert the specified object type. Type of the object. - true if this instance can convert the specified object type; otherwise, false. + true if this instance can convert the specified object type; otherwise, false. - + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + Represents a view of a . - + - Initializes a new instance of the class. + Initializes a new instance of the class. The name. Type of the property. - + When overridden in a derived class, returns whether resetting an object changes its value. @@ -1120,7 +1303,7 @@ The component to test for reset capability. - + When overridden in a derived class, gets the current value of the property on a component. @@ -1130,14 +1313,14 @@ The component with the property for which to retrieve the value. - + When overridden in a derived class, resets the value for this property of the component to the default value. The component with the property value that is to be reset to the default value. - + When overridden in a derived class, sets the value of the component to a different value. @@ -1145,7 +1328,7 @@ The new value. - + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. @@ -1155,7 +1338,7 @@ The component with the property to be examined for persistence. - + When overridden in a derived class, gets the type of the component this property is bound to. @@ -1163,7 +1346,7 @@ A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. - + When overridden in a derived class, gets a value indicating whether this property is read-only. @@ -1171,7 +1354,7 @@ true if the property is read-only; otherwise, false. - + When overridden in a derived class, gets the type of the property. @@ -1179,7 +1362,7 @@ A that represents the type of the property. - + Gets the hash code for the name of the member. @@ -1188,117 +1371,6 @@ The hash code for the name of the member. - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The value. - - - - Returns the properties for this instance of a component. - - - A that represents the properties for this component instance. - - - - - Returns the properties for this instance of a component using the attribute array as a filter. - - An array of type that is used as a filter. - - A that represents the filtered properties for this component instance. - - - - - Returns a collection of custom attributes for this instance of a component. - - - An containing the attributes for this object. - - - - - Returns the class name of this instance of a component. - - - The class name of the object, or null if the class does not have a name. - - - - - Returns the name of this instance of a component. - - - The name of the object, or null if the object does not have a name. - - - - - Returns a type converter for this instance of a component. - - - A that is the converter for this object, or null if there is no for this object. - - - - - Returns the default event for this instance of a component. - - - An that represents the default event for this object, or null if this object does not have events. - - - - - Returns the default property for this instance of a component. - - - A that represents the default property for this object, or null if this object does not have properties. - - - - - Returns an editor of the specified type for this instance of a component. - - A that represents the editor for this object. - - An of the specified type that is the editor for this object, or null if the editor cannot be found. - - - - - Returns the events for this instance of a component using the specified attribute array as a filter. - - An array of type that is used as a filter. - - An that represents the filtered events for this component instance. - - - - - Returns the events for this instance of a component. - - - An that represents the events for this component instance. - - - - - Returns an object that contains the property described by the specified property descriptor. - - A that represents the property whose owner is to be found. - - An that represents the owner of the specified property. - - Represents a raw JSON string. @@ -1458,6 +1530,13 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -1479,6 +1558,13 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -1500,6 +1586,20 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -1507,6 +1607,20 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -1598,6 +1712,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -1619,6 +1740,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -1633,6 +1761,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -1682,6 +1817,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -1766,6 +1908,19 @@ The that will be used when reading the object. A with the value of the specified object + + + Creates the specified .NET type from the . + + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The that will be used when creating the object. + The new object created from the JSON value. + Creates a from a . @@ -1777,6 +1932,24 @@ by the token type of the first token encountered in the reader. + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + Selects the token that matches the object path. @@ -1802,6 +1975,12 @@ A flag to indicate whether an error should be thrown if no token is found. The that matches the object path. + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + Gets a comparer that can compare two tokens for value equality. @@ -1906,6 +2085,24 @@ The value. + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + Initializes a new instance of the class with the given value. @@ -1962,6 +2159,62 @@ A hash code for the current . + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + Gets a value indicating whether this token has childen tokens. @@ -2021,38 +2274,220 @@ The property must be defined in JSON and cannot be a null value. + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + Used to resolve references when serializing and deserializing JSON by the . - + Resolves a reference to its object. + The serialization context. The reference to resolve. The object that - + Gets the reference for the sepecified object. + The serialization context. The object to get a reference for. The reference to the object. - + Determines whether the specified object is referenced. + The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. - + Adds a reference to the specified object. + The serialization context. The reference. The object to reference. @@ -2158,12 +2593,25 @@ - Include default values when serializing and deserializing objects. + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. - Ignore default values when serializing and deserializing objects. + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. @@ -2332,6 +2780,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Reads the next JSON token from the stream. @@ -2396,8 +2856,8 @@ Determines whether the specified objects are equal. - The first object of type to compare. - The second object of type to compare. + The first object of type to compare. + The second object of type to compare. true if the specified objects are equal; otherwise, false. @@ -2536,7 +2996,7 @@ - Converts an to and from JSON. + Converts XML to and from JSON. @@ -2580,6 +3040,19 @@ The name of the deserialize root element. + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. @@ -2607,6 +3080,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Changes the state to closed. @@ -2620,6 +3105,11 @@ true if LineNumber and LinePosition can be provided; otherwise, false. + + + Gets or sets the culture used when reading JSON. Defaults to . + + Gets the current line number. @@ -2688,6 +3178,12 @@ Whether this property's value is serialized as a reference. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + Gets or sets the name of the property. @@ -2883,6 +3379,30 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes out a comment /*...*/ containing the specified text. @@ -2897,7 +3417,7 @@ - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. @@ -2907,7 +3427,7 @@ - Gets or sets which character to use for indenting when is set to Formatting.Indented. + Gets or sets which character to use for indenting when is set to Formatting.Indented. @@ -2940,6 +3460,15 @@ The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + The exception thrown when an error occurs while reading Json text. @@ -2965,6 +3494,15 @@ The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + Gets the line number indicating where the error occurred. @@ -3029,6 +3567,13 @@ The value to convert. A JSON string representation of the . + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + Converts the to its JSON string representation. @@ -3134,6 +3679,20 @@ The value to convert. A JSON string representation of the . + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + Converts the to its JSON string representation. @@ -3204,54 +3763,65 @@ - Deserializes the specified object to a Json object. + Deserializes the JSON to a .NET object. - The object to deserialize. + The JSON to deserialize. The deserialized object from the Json string. + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + - Deserializes the specified object to a Json object. + Deserializes the JSON to the specified .NET type. - The object to deserialize. + The JSON to deserialize. The of object being deserialized. The deserialized object from the Json string. - Deserializes the specified object to a Json object. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. - The object to deserialize. + The type of the object to deserialize to. + The JSON to deserialize. The deserialized object from the Json string. - Deserializes the specified JSON to the given anonymous type. + Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. - The object to deserialize. + The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. - The object to deserialize. + The type of the object to deserialize to. + The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. + The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. @@ -3261,19 +3831,19 @@ - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The object to deserialize. + The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. The JSON to deserialize. - The type of the object to deserialize. + The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be is used. @@ -3313,6 +3883,15 @@ Indicates how the output is formatted. A JSON string of the XmlNode. + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + Deserializes the XmlNode from a JSON string. @@ -3328,6 +3907,69 @@ The name of the root element to append when deserializing. The deserialized XmlNode + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + The exception thrown when an error occurs during Json serialization or deserialization. @@ -3353,6 +3995,15 @@ The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + Serializes and deserializes objects into and from the JSON format. @@ -3709,6 +4360,12 @@ Occurs before an item is added to the collection. + + + Gets the container's children tokens. + + The container's children tokens. + Gets a value indicating whether this token has childen tokens. @@ -3733,6 +4390,12 @@ A containing the last child token of the . + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + Initializes a new instance of the class. @@ -3778,6 +4441,12 @@ A that will be read for the content of the . A that contains the JSON that was read from the specified . + + + Gets the container's children tokens. + + The container's children tokens. + Gets or sets the name of this constructor. @@ -3971,11 +4640,128 @@ Name of the property. + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Gets the container's children tokens. + + The container's children tokens. + Occurs when a property value changes. + + + Occurs when a property value is changing. + + Gets the node type for this . @@ -3994,13 +4780,6 @@ - - - Gets the number of elements contained in the . - - - The number of elements contained in the . - Represents a JSON array. @@ -4125,6 +4904,12 @@ The is read-only. + + + Gets the container's children tokens. + + The container's children tokens. + Gets the node type for this . @@ -4143,13 +4928,6 @@ - - - Gets the number of elements contained in the . - - - The number of elements contained in the . - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. @@ -4169,6 +4947,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Reads the next JSON token from the stream. @@ -4343,12 +5133,36 @@ The value to write. + + + Writes a value. + + The value to write. + Writes a value. The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Gets the token being writen. @@ -4366,14 +5180,6 @@ A object to copy from. - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - Initializes a new instance of the class. @@ -4402,6 +5208,12 @@ A that will be read for the content of the . A that contains the JSON that was read from the specified . + + + Gets the container's children tokens. + + The container's children tokens. + Gets the property name. @@ -4500,6 +5312,21 @@ A collection of bytes value. + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + Contains the JSON schema extension methods. @@ -4555,6 +5382,15 @@ The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + Gets the line number indicating where the error occurred. @@ -4691,6 +5527,22 @@ Type of the object. A for the given type. + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + Resolves the default for the contract. @@ -4747,12 +5599,13 @@ Type of the object. A for the given type. - + - Creates properties for the given . + Creates properties for the given . - The contract to create properties for. - Properties for the given . + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . @@ -4761,11 +5614,11 @@ The member. The used by the serializer to get and set values from a member. - + Creates a for the given . - The member's declaring types . + The member's parent . The member to create a for. A created for the given . @@ -4826,50 +5679,6 @@ The type of the object the formatter creates a new instance of. - - - Get and set values for a using dynamic methods. - - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - Provides information surrounding an error. @@ -4899,106 +5708,11 @@ true if handled; otherwise, false. - - - Provides data for the Error event. - - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - Contract details for a used by the . - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether [default creator non public]. - - true if the default object creator is non-public; otherwise, false. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - Initializes a new instance of the class. @@ -5016,48 +5730,15 @@ The underlying type for the contract. - + - Contract details for a used by the . + Gets or sets the property name resolver. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Gets or sets the ISerializable object constructor. - - The ISerializable object constructor. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. + The property name resolver. - Maps a JSON property to a .NET member. + Maps a JSON property to a .NET member or constructor parameter. @@ -5070,10 +5751,22 @@ - Gets the name of the property. + Gets or sets the name of the property. The name of the property. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + Gets the that will get and set the during serialization. @@ -5093,6 +5786,12 @@ The converter. + + + Gets the member converter. + + The member converter. + Gets a value indicating whether this is ignored. @@ -5111,12 +5810,6 @@ true if writable; otherwise, false. - - - Gets the member converter. - - The member converter. - Gets the default value. @@ -5173,16 +5866,28 @@ A predicate used to determine whether the property should be serialize. + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + A collection of objects. - + Initializes a new instance of the class. - The contract. + The type. @@ -5335,9 +6040,9 @@ Gets or sets the title. - + - Gets or sets whether the object is optional. + Gets or sets whether the object is required. @@ -5384,11 +6089,11 @@ The maximum length. - + - Gets or sets the maximum decimals. + Gets or sets a number that the value should be divisble by. - The maximum decimals. + A number that the value should be divisble by. @@ -5402,6 +6107,18 @@ The maximum. + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + Gets or sets the minimum number of items. @@ -5432,6 +6149,12 @@ The of additional properties. + + + Gets or sets the pattern properties. + + The pattern properties. + Gets or sets a value indicating whether additional properties are allowed. @@ -5609,6 +6332,19 @@ The object's properties. + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + Gets or sets the parametrized constructor used to create the object. @@ -5626,16 +6362,6 @@ The underlying type for the contract. - - - Represents a method that constructs an object. - - - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - Get and set values for a using reflection. @@ -5661,6 +6387,16 @@ The target to get the value from. The value. + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Represents a method that constructs an object. + + Specifies type name handling options for the . @@ -6083,6 +6819,25 @@ The list to add to. The collection of elements to add. + + + Returns the index of the first occurrence in a sequence by using the default equality comparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + Gets the type of the typed collection's items. @@ -6148,12 +6903,13 @@ true if the specified MemberInfo can be read; otherwise, false. - + Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.dll new file mode 100644 index 000000000..490e2fbac Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.pdb new file mode 100644 index 000000000..4d45a3f21 Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.xml new file mode 100644 index 000000000..121447eb7 --- /dev/null +++ b/packages/Newtonsoft.Json.4.0.4/lib/net40/Newtonsoft.Json.xml @@ -0,0 +1,7141 @@ + + + + Newtonsoft.Json + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets the type of the current Json token. + + + + + Gets the text value of the current Json token. + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + + A . + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token. + + The to read the token from. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Indicates how the output is formatted. + + + + + Initializes a new instance of the class. + + The stream. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Converts a binary value to and from a base 64 string value. + + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework EntityKey to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + A cached representation of the Enum string representation to respect per Enum field name. + + The type of the Enum. + A map of enum field name to either the field name, or the configured enum member name (). + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a raw JSON string. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Represents an abstract JSON token. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + Type of the property. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Specifies reference handling options for the . + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Specifies default value handling options for the . + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Specifies the member serialization options for the . + + + + + All members are serialized by default. Members can be excluded using the . + + + + + Only members must be marked with the are serialized. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. + + + + + The time represented is local time. + + + + + The time represented is UTC. + + + + + The time represented is not specified as either local time or Coordinated Universal Time (UTC). + + + + + Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + + + Converts XML to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Represents a collection of . + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Represents a token that can contain other tokens. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + Represents a JSON object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Represents a JSON array. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Used by to resolves a for a given . + + + + + Used by to resolves a for a given . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Provides information surrounding an error. + + + + + Gets or sets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets the member converter. + + The member converter. + + + + Gets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets the property null value handling. + + The null value handling. + + + + Gets the property default value handling. + + The default value handling. + + + + Gets the property reference loop handling. + + The reference loop handling. + + + + Gets the property object creation handling. + + The object creation handling. + + + + Gets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Serializes the dynamic. + + The writer. + The value. + The contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Represents a method that constructs an object. + + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Always include the .NET type name when serializing. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The culture to use when converting. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + If set to true ignore case. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the maximum valid value of an Enum type. Flags enums are ORed. + + The type of the returned value. Must be assignable from the enum's underlying value type. + The enum type to get the maximum value for. + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Returns the index of the first occurrence in a sequence by using the default equality comparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Tests whether the list's items are their unitialized value. + + The list. + Whether the list's items are their unitialized value + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string contains white space. + + The string to test for white space. + + true if the string contains white space; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Ensures the target string ends with the specified string. + + The target. + The value. + The target string with the value string at the end. + + + + Perform an action if the string is not null or empty. + + The value. + The action to perform. + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + The indent character. + + + + + Numbers the lines. + + The string to number. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + diff --git a/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.dll new file mode 100644 index 000000000..353c8ab2d Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.pdb new file mode 100644 index 000000000..d57bee92b Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.xml similarity index 90% rename from packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml rename to packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.xml index e5e3da703..7dba1a442 100644 --- a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml +++ b/packages/Newtonsoft.Json.4.0.4/lib/sl3-wp/Newtonsoft.Json.xml @@ -4,6 +4,23 @@ Newtonsoft.Json + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. @@ -31,6 +48,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Skips the children of the current token. @@ -76,6 +105,16 @@ The current reader state. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + Gets the quotation mark character used to enclose the value of a string. @@ -194,6 +233,20 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + + A . + + Reads the next JSON token from the stream. @@ -202,6 +255,19 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + Gets or sets a value indicating whether the root object will be read as a JSON array. @@ -428,6 +494,18 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. @@ -518,12 +596,30 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. The value to write. + + + Writes a value. + + The value to write. + Writes a value. @@ -543,6 +639,16 @@ The string of white space characters. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + Gets the top. @@ -616,6 +722,11 @@ The name of the property. + + + Closes this stream and the underlying stream. + + Writes a null value. @@ -728,6 +839,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value that represents a BSON object id. @@ -748,22 +877,20 @@ The used when writing values to BSON. - + - Represents a BSON Oid (object id). + Specifies how constructors are used when initializing objects during deserialization by the . - + - Initializes a new instance of the class. + First attempt to use the public default constructor then fall back to single paramatized constructor. - The Oid value. - + - Gets or sets the value of the Oid. + Allow Json.NET to use a non-public default constructor. - The value of the Oid. @@ -847,12 +974,12 @@ true if this instance can convert the specified object type; otherwise, false. - + - Converts a to and from JSON. + Converts a to and from JSON and BSON. - + Writes the JSON representation of the object. @@ -860,7 +987,7 @@ The value. The calling serializer. - + Reads the JSON representation of the object. @@ -870,45 +997,13 @@ The calling serializer. The object value. - + - Determines whether this instance can convert the specified value type. + Determines whether this instance can convert the specified object type. - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - true if this instance can convert the specified value type; otherwise, false. + true if this instance can convert the specified object type; otherwise, false. @@ -973,1734 +1068,6 @@ true if this instance can convert the specified object type; otherwise, false. - - - Converts an Entity Framework EntityKey to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an to and from its name string value. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Specifies how constructors are used when initializing objects during deserialization by the . - - - - - First attempt to use the public default constructor then fall back to single paramatized constructor. - - - - - Allow Json.NET to use a non-public default constructor. - - - - - Represents a raw JSON string. - - - - - Represents a value in JSON (string, integer, date, etc). - - - - - Represents an abstract JSON token. - - - - - Represents a collection of objects. - - The type of token - - - - Gets the with the specified key. - - - - - - Provides an interface to enable a class to return line and position information. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Gets the current line position. - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Compares the values of two tokens, including the values of all descendant tokens. - - The first to compare. - The second to compare. - true if the tokens are equal; otherwise false. - - - - Adds the specified content immediately after this token. - - A content object that contains simple content or a collection of content objects to be added after this token. - - - - Adds the specified content immediately before this token. - - A content object that contains simple content or a collection of content objects to be added before this token. - - - - Returns a collection of the ancestor tokens of this token. - - A collection of the ancestor tokens of this token. - - - - Returns a collection of the sibling tokens after this token, in document order. - - A collection of the sibling tokens after this tokens, in document order. - - - - Returns a collection of the sibling tokens before this token, in document order. - - A collection of the sibling tokens before this token, in document order. - - - - Gets the with the specified key converted to the specified type. - - The type to convert the token to. - The token key. - The converted token value. - - - - Returns a collection of the child tokens of this token, in document order. - - An of containing the child tokens of this , in document order. - - - - Returns a collection of the child tokens of this token, in document order, filtered by the specified type. - - The type to filter the child tokens on. - A containing the child tokens of this , in document order. - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - A containing the child values of this , in document order. - - - - Removes this token from its parent. - - - - - Replaces this token with the specified token. - - The value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Returns the indented JSON for this token. - - - The indented JSON for this token. - - - - - Returns the JSON for this token using the given formatting and converters. - - Indicates how the output is formatted. - A collection of which will be used when writing the token. - The JSON for this token using the given formatting and converters. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Creates an for this token. - - An that can be used to read this token and its descendants. - - - - Creates a from an object. - - The object that will be used to create . - A with the value of the specified object - - - - Creates a from an object using the specified . - - The object that will be used to create . - The that will be used when reading the object. - A with the value of the specified object - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Selects the token that matches the object path. - - - The object path from the current to the - to be returned. This must be a string of property names or array indexes separated - by periods, such as Tables[0].DefaultView[0].Price in C# or - Tables(0).DefaultView(0).Price in Visual Basic. - - The that matches the object path or a null reference if no matching token is found. - - - - Selects the token that matches the object path. - - - The object path from the current to the - to be returned. This must be a string of property names or array indexes separated - by periods, such as Tables[0].DefaultView[0].Price in C# or - Tables(0).DefaultView(0).Price in Visual Basic. - - A flag to indicate whether an error should be thrown if no token is found. - The that matches the object path. - - - - Gets a comparer that can compare two tokens for value equality. - - A that can compare two nodes for value equality. - - - - Gets or sets the parent. - - The parent. - - - - Gets the root of this . - - The root of this . - - - - Gets the node type for this . - - The type. - - - - Gets a value indicating whether this token has childen tokens. - - - true if this token has child values; otherwise, false. - - - - - Gets the next sibling token of this node. - - The that contains the next sibling token. - - - - Gets the previous sibling token of this node. - - The that contains the previous sibling token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Get the first child token of this token. - - A containing the first child token of the . - - - - Get the last child token of this token. - - A containing the last child token of the . - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Creates a comment with the given value. - - The value. - A comment with the given value. - - - - Creates a string with the given value. - - The value. - A string with the given value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Indicates whether the current object is equal to another object of the same type. - - - true if the current object is equal to the parameter; otherwise, false. - - An object to compare with this object. - - - - Determines whether the specified is equal to the current . - - The to compare with the current . - - true if the specified is equal to the current ; otherwise, false. - - - The parameter is null. - - - - - Serves as a hash function for a particular type. - - - A hash code for the current . - - - - - Gets a value indicating whether this token has childen tokens. - - - true if this token has child values; otherwise, false. - - - - - Gets the node type for this . - - The type. - - - - Gets or sets the underlying token value. - - The underlying token value. - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class. - - The raw json. - - - - Creates an instance of with the content of the reader's current token. - - The reader. - An instance of with the content of the reader's current token. - - - - Indicating whether a property is required. - - - - - The property is not required. The default state. - - - - - The property must be defined in JSON but can be a null value. - - - - - The property must be defined in JSON and cannot be a null value. - - - - - Contract details for a used by the . - - - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether [default creator non public]. - - true if the default object creator is non-public; otherwise, false. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Gets or sets the ISerializable object constructor. - - The ISerializable object constructor. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Get and set values for a using dynamic methods. - - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Provides data for the Error event. - - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The name. - Type of the property. - - - - When overridden in a derived class, returns whether resetting an object changes its value. - - - true if resetting the component changes its value; otherwise, false. - - The component to test for reset capability. - - - - - When overridden in a derived class, gets the current value of the property on a component. - - - The value of a property for a given component. - - The component with the property for which to retrieve the value. - - - - - When overridden in a derived class, resets the value for this property of the component to the default value. - - The component with the property value that is to be reset to the default value. - - - - - When overridden in a derived class, sets the value of the component to a different value. - - The component with the property value that is to be set. - The new value. - - - - - When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. - - - true if the property should be persisted; otherwise, false. - - The component with the property to be examined for persistence. - - - - - When overridden in a derived class, gets the type of the component this property is bound to. - - - A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. - - - - - When overridden in a derived class, gets a value indicating whether this property is read-only. - - - true if the property is read-only; otherwise, false. - - - - - When overridden in a derived class, gets the type of the property. - - - A that represents the type of the property. - - - - - Gets the hash code for the name of the member. - - - - The hash code for the name of the member. - - - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The value. - - - - Returns the properties for this instance of a component. - - - A that represents the properties for this component instance. - - - - - Returns the properties for this instance of a component using the attribute array as a filter. - - An array of type that is used as a filter. - - A that represents the filtered properties for this component instance. - - - - - Returns a collection of custom attributes for this instance of a component. - - - An containing the attributes for this object. - - - - - Returns the class name of this instance of a component. - - - The class name of the object, or null if the class does not have a name. - - - - - Returns the name of this instance of a component. - - - The name of the object, or null if the object does not have a name. - - - - - Returns a type converter for this instance of a component. - - - A that is the converter for this object, or null if there is no for this object. - - - - - Returns the default event for this instance of a component. - - - An that represents the default event for this object, or null if this object does not have events. - - - - - Returns the default property for this instance of a component. - - - A that represents the default property for this object, or null if this object does not have properties. - - - - - Returns an editor of the specified type for this instance of a component. - - A that represents the editor for this object. - - An of the specified type that is the editor for this object, or null if the editor cannot be found. - - - - - Returns the events for this instance of a component using the specified attribute array as a filter. - - An array of type that is used as a filter. - - An that represents the filtered events for this component instance. - - - - - Returns the events for this instance of a component. - - - An that represents the events for this component instance. - - - - - Returns an object that contains the property described by the specified property descriptor. - - A that represents the property whose owner is to be found. - - An that represents the owner of the specified property. - - - - - Used to resolve references when serializing and deserializing JSON by the . - - - - - Resolves a reference to its object. - - The reference to resolve. - The object that - - - - Gets the reference for the sepecified object. - - The object to get a reference for. - The reference to the object. - - - - Determines whether the specified object is referenced. - - The object to test for a reference. - - true if the specified object is referenced; otherwise, false. - - - - - Adds a reference to the specified object. - - The reference. - The object to reference. - - - - Specifies reference handling options for the . - - - - - Do not preserve references when serializing types. - - - - - Preserve references when serializing into a JSON object structure. - - - - - Preserve references when serializing into a JSON array structure. - - - - - Preserve references when serializing. - - - - - Instructs the how to serialize the collection. - - - - - Instructs the how to serialize the object. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Gets or sets the id. - - The id. - - - - Gets or sets the title. - - The title. - - - - Gets or sets the description. - - The description. - - - - Gets or sets a value that indicates whether to preserve object reference data. - - - true to keep object reference; otherwise, false. The default is false. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a flag indicating whether the array can contain null items - - A flag indicating whether the array can contain null items. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Gets or sets a value indicating whether null items are allowed in the collection. - - true if null items are allowed in the collection; otherwise, false. - - - - Specifies default value handling options for the . - - - - - Include default values when serializing and deserializing objects. - - - - - Ignore default values when serializing and deserializing objects. - - - - - Instructs the to use the specified when serializing the member or class. - - - - - Initializes a new instance of the class. - - Type of the converter. - - - - Gets the type of the converter. - - The type of the converter. - - - - Instructs the how to serialize the object. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified member serialization. - - The member serialization. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Gets or sets the member serialization. - - The member serialization. - - - - Specifies the settings on a object. - - - - - Initializes a new instance of the class. - - - - - Gets or sets how reference loops (e.g. a class referencing itself) is handled. - - Reference loop handling. - - - - Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - Missing member handling. - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how null values are handled during serialization and deserialization. - - Null value handling. - - - - Gets or sets how null default are handled during serialization and deserialization. - - The default value handling. - - - - Gets or sets a collection that will be used during serialization. - - The converters. - - - - Gets or sets how object references are preserved by the serializer. - - The preserve references handling. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - The type name handling. - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - The contract resolver. - - - - Gets or sets the used by the serializer when resolving references. - - The reference resolver. - - - - Gets or sets the used by the serializer when resolving type names. - - The binder. - - - - Gets or sets the error handler called during serialization and deserialization. - - The error handler called during serialization and deserialization. - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Represents a reader that provides validation. - - - - - Initializes a new instance of the class that - validates the content returned from the given . - - The to read from while validating. - - - - Reads the next JSON token from the stream as a . - - - A or a null reference if the next JSON token is null. - - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Sets an event handler for receiving schema validation errors. - - - - - Gets the text value of the current Json token. - - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - - Gets the type of the current Json token. - - - - - - Gets The Common Language Runtime (CLR) type for the current Json token. - - - - - - Gets or sets the schema. - - The schema. - - - - Gets the used to construct this . - - The specified in the constructor. - - - - Compares tokens to determine whether they are equal. - - - - - Determines whether the specified objects are equal. - - The first object of type to compare. - The second object of type to compare. - - true if the specified objects are equal; otherwise, false. - - - - - Returns a hash code for the specified object. - - The for which a hash code is to be returned. - A hash code for the specified object. - The type of is a reference type and is null. - - - - Specifies the member serialization options for the . - - - - - All members are serialized by default. Members can be excluded using the . - - - - - Only members must be marked with the are serialized. - - - - - Specifies how object creation is handled by the . - - - - - Reuse existing objects, create new objects when needed. - - - - - Only reuse existing objects. - - - - - Always create new objects. - - Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). @@ -2790,9 +1157,121 @@ Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + A cached representation of the Enum string representation to respect per Enum field name. + + The type of the Enum. + A map of enum field name to either the field name, or the configured enum member name (). + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + - Converts an to and from JSON. + Converts XML to and from JSON. @@ -2836,39 +1315,68 @@ The name of the deserialize root element. - + - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. - + - Initializes a new instance of the class with the specified . - - The TextReader containing the XML data to read. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Reads the next JSON token from the stream as a . - - - A or a null reference if the next JSON token is null. - - - - - Changes the state to closed. + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly. - + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly. + + + + + Specifies default value handling options for the . + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Provides an interface to enable a class to return line and position information. + + + Gets a value indicating whether the class can return line information. @@ -2876,22 +1384,547 @@ true if LineNumber and LinePosition can be provided; otherwise, false. - + Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - + Gets the current line position. + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + true to keep object reference; otherwise, false. The default is false. + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Represents a collection of . + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + Instructs the to always serialize the member with the specified name. @@ -2944,6 +1977,12 @@ Whether this property's value is serialized as a reference. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + Gets or sets the name of the property. @@ -2958,11 +1997,405 @@ A value indicating whether this property is required. - + - Instructs the not to serialize the public field or public read/write property value. + The exception thrown when an error occurs while reading Json text. + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. @@ -3145,6 +2578,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes out a comment /*...*/ containing the specified text. @@ -3159,7 +2610,7 @@ - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. @@ -3169,7 +2620,7 @@ - Gets or sets which character to use for indenting when is set to Formatting.Indented. + Gets or sets which character to use for indenting when is set to Formatting.Indented. @@ -3177,6 +2628,245 @@ Gets or sets a value indicating whether object names will be surrounded with quotes. + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + The exception thrown when an error occurs while reading Json text. @@ -3202,619 +2892,6 @@ The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - The exception thrown when an error occurs while reading Json text. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Represents a collection of . - - - - - Provides methods for converting between common language runtime types and JSON types. - - - - - Represents JavaScript's boolean value true as a string. This field is read-only. - - - - - Represents JavaScript's boolean value false as a string. This field is read-only. - - - - - Represents JavaScript's null as a string. This field is read-only. - - - - - Represents JavaScript's undefined as a string. This field is read-only. - - - - - Represents JavaScript's positive infinity as a string. This field is read-only. - - - - - Represents JavaScript's negative infinity as a string. This field is read-only. - - - - - Represents JavaScript's NaN as a string. This field is read-only. - - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Serializes the specified object to a JSON string. - - The object to serialize. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string. - - The object to serialize. - Indicates how the output is formatted. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - Indicates how the output is formatted. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be is used. - - A JSON string representation of the object. - - - - - Deserializes the specified object to a Json object. - - The object to deserialize. - The deserialized object from the Json string. - - - - Deserializes the specified object to a Json object. - - The object to deserialize. - The of object being deserialized. - The deserialized object from the Json string. - - - - Deserializes the specified object to a Json object. - - The type of the object to deserialize. - The object to deserialize. - The deserialized object from the Json string. - - - - Deserializes the specified JSON to the given anonymous type. - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The object to deserialize. - The anonymous type object. - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON string to the specified type. - - The type of the object to deserialize. - The object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON string to the specified type. - - The type of the object to deserialize. - The object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be is used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON string to the specified type. - - The object to deserialize. - The type of the object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON string to the specified type. - - The JSON to deserialize. - The type of the object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be is used. - - The deserialized object from the JSON string. - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be is used. - - - - - Serializes the to a JSON string. - - The node to convert to JSON. - A JSON string of the XNode. - - - - Serializes the to a JSON string. - - The node to convert to JSON. - Indicates how the output is formatted. - A JSON string of the XNode. - - - - Deserializes the from a JSON string. - - The JSON string. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment. - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XNode - - - - Serializes the XML node to a JSON string. - - The node to serialize. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string. - - The node to serialize. - Indicates how the output is formatted. - A JSON string of the XmlNode. - - - - Deserializes the XmlNode from a JSON string. - - The JSON string. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment. - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XmlNode - - - - The exception thrown when an error occurs during Json serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Serializes and deserializes objects into and from the JSON format. - The enables you to control how objects are encoded into JSON. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance using the specified . - - The settings to be applied to the . - A new instance using the specified . - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Deserializes the Json structure contained by the specified . - - The that contains the JSON structure to deserialize. - The being deserialized. - - - - Deserializes the Json structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Deserializes the Json structure contained by the specified - into an instance of the specified type. - - The containing the object. - The type of the object to deserialize. - The instance of being deserialized. - - - - Deserializes the Json structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Serializes the specified and writes the Json structure - to a Stream using the specified . - - The used to write the Json structure. - The to serialize. - - - - Serializes the specified and writes the Json structure - to a Stream using the specified . - - The used to write the Json structure. - The to serialize. - - - - Occurs when the errors during serialization and deserialization. - - - - - Gets or sets the used by the serializer when resolving references. - - - - - Gets or sets the used by the serializer when resolving type names. - - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how object references are preserved by the serializer. - - - - - Get or set how reference loops (e.g. a class referencing itself) is handled. - - - - - Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - - - - Get or set how null values are handled during serialization and deserialization. - - - - - Get or set how null default are handled during serialization and deserialization. - - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets a collection that will be used during serialization. - - Collection that will be used during serialization. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - Contains the LINQ to JSON extension methods. @@ -3924,9 +3001,21 @@ An of that contains the source collection. The input typed as . - + - Represents a JSON constructor. + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Represents a JSON array. @@ -3934,17 +3023,636 @@ Represents a token that can contain other tokens. - + - Raises the event. + Represents an abstract JSON token. - The instance containing the event data. - + - Raises the event. + Compares the values of two tokens, including the values of all descendant tokens. - The instance containing the event data. + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Raises the event. + + The instance containing the event data. @@ -3998,15 +3706,16 @@ Removes the child nodes from this token. - + - Occurs when the list changes or an item in the list changes. + Occurs when the items list of the collection has changed, or the collection is reset. - + - Occurs before an item is added to the collection. + Gets the container's children tokens. + The container's children tokens. @@ -4032,6 +3741,160 @@ A containing the last child token of the . + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Represents a JSON constructor. + + Initializes a new instance of the class. @@ -4077,6 +3940,12 @@ A that will be read for the content of the . A that contains the JSON that was read from the specified . + + + Gets the container's children tokens. + + The container's children tokens. + Gets or sets the name of this constructor. @@ -4270,22 +4139,17 @@ Name of the property. - + - Raises the event with the provided arguments. + Gets the container's children tokens. - Name of the property. + The container's children tokens. Occurs when a property value changes. - - - Occurs when a property value is changing. - - Gets the node type for this . @@ -4304,161 +4168,312 @@ - + - Gets the number of elements contained in the . - - - The number of elements contained in the . - - - - Represents a JSON array. + Represents a JSON property. - + - Initializes a new instance of the class. + Initializes a new instance of the class from another object. + A object to copy from. - + - Initializes a new instance of the class from another object. + Initializes a new instance of the class. - A object to copy from. + The property name. + The property content. - + - Initializes a new instance of the class with the specified content. + Initializes a new instance of the class. - The contents of the array. + The property name. + The property content. - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - + Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. - + - Determines the index of a specific item in the . + Loads an from a . - The object to locate in the . - - The index of if found in the list; otherwise, -1. - + A that will be read for the content of the . + A that contains the JSON that was read from the specified . - + - Inserts an item to the at the specified index. + Gets the container's children tokens. - The zero-based index at which should be inserted. - The object to insert into the . - - is not a valid index in the . - The is read-only. + The container's children tokens. - + - Removes the item at the specified index. + Gets the property name. - The zero-based index of the item to remove. - - is not a valid index in the . - The is read-only. + The property name. - + - Adds an item to the . + Gets or sets the property value. - The object to add to the . - The is read-only. + The property value. - - - Removes all items from the . - - The is read-only. - - - - Determines whether the contains a specific value. - - The object to locate in the . - - true if is found in the ; otherwise, false. - - - - - Removes the first occurrence of a specific object from the . - - The object to remove from the . - - true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . - - The is read-only. - - + Gets the node type for this . The type. - + - Gets the with the specified key. + Represents a raw JSON string. - The with the specified key. - + - Gets or sets the at the specified index. + Represents a value in JSON (string, integer, date, etc). - - + - Gets the number of elements contained in the . + Initializes a new instance of the class from another object. - - The number of elements contained in the . + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. @@ -4479,6 +4494,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Reads the next JSON token from the stream. @@ -4487,6 +4514,101 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. @@ -4665,288 +4787,172 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Gets the token being writen. The token being writen. - + - Represents a JSON property. + Specifies the member serialization options for the . - + - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Gets the property name. - - The property name. - - - - Gets or sets the property value. - - The property value. - - - - Gets the node type for this . - - The type. - - - - Specifies the type of token. + All members are serialized by default. Members can be excluded using the . - + - No token type has been set. + Only members must be marked with the are serialized. - + - A JSON object. + Specifies missing member handling options for the . - + - A JSON array. + Ignore a missing member and do not attempt to deserialize it. - + - A JSON constructor. + Throw a when a missing member is encountered during deserialization. - + - A JSON object property. + Specifies null value handling options for the . - + - A comment. + Include null values when serializing and deserializing objects. - + - An integer value. + Ignore null values when serializing and deserializing objects. - + - A float value. + Specifies how object creation is handled by the . - + - A string value. + Reuse existing objects, create new objects when needed. - + - A boolean value. + Only reuse existing objects. - + - A null value. + Always create new objects. - + - An undefined value. + Specifies reference handling options for the . - + - A date value. + Do not preserve references when serializing types. - + - A raw JSON value. + Preserve references when serializing into a JSON object structure. - + - A collection of bytes value. + Preserve references when serializing into a JSON array structure. - + - Contains the JSON schema extension methods. + Preserve references when serializing. - + - Determines whether the is valid. - - The source to test. - The schema to test with. - - true if the specified is valid; otherwise, false. - - - - - Validates the specified . - - The source to test. - The schema to test with. - - - - Validates the specified . - - The source to test. - The schema to test with. - The validation event handler. - - - - Returns detailed information about the schema exception. + Specifies reference loop handling options for the . - + - Initializes a new instance of the class. + Throw a when a loop is encountered. - + - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Resolves from an id. + Ignore loop references and do not serialize. - + - Initializes a new instance of the class. + Serialize loop references. - + - Gets a for the specified id. - - The id. - A for the specified id. - - - - Gets or sets the loaded schemas. - - The loaded schemas. - - - - Specifies undefined schema Id handling options for the . + Indicating whether a property is required. - + - Do not infer a schema Id. + The property is not required. The default state. - + - Use the .NET type name as the schema Id. + The property must be defined in JSON but can be a null value. - + - Use the assembly qualified .NET type name as the schema Id. + The property must be defined in JSON and cannot be a null value. - + - Returns detailed information related to the . + Allows users to control class loading and mandate what class to load. - + - Gets the associated with the validation event. - - The JsonSchemaException associated with the validation event. - - - - Gets the text description corresponding to the validation event. - - The text description. - - - - Represents the callback method that will handle JSON schema validation events and the . + When overridden in a derived class, controls the binding of a serialized object to a type. + Specifies the name of the serialized object. + Specifies the name of the serialized object + @@ -5007,6 +5013,22 @@ Type of the object. A for the given type. + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + Resolves the default for the contract. @@ -5042,13 +5064,6 @@ Type of the object. A for the given type. - - - Creates a for the given type. - - Type of the object. - A for the given type. - Creates a for the given type. @@ -5063,12 +5078,13 @@ Type of the object. A for the given type. - + - Creates properties for the given . + Creates properties for the given . - The contract to create properties for. - Properties for the given . + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . @@ -5077,11 +5093,11 @@ The member. The used by the serializer to get and set values from a member. - + Creates a for the given . - The member's declaring types . + The member's parent . The member to create a for. A created for the given . @@ -5127,6 +5143,45 @@ Name of the property. The property name camel cased. + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + The default serialization binder used when resolving and loading classes from type names. @@ -5142,6 +5197,14 @@ The type of the object the formatter creates a new instance of. + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + Provides information surrounding an error. @@ -5171,11 +5234,125 @@ true if handled; otherwise, false. + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + Contract details for a used by the . + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + Initializes a new instance of the class. @@ -5193,9 +5370,79 @@ The underlying type for the contract. + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + - Maps a JSON property to a .NET member. + Maps a JSON property to a .NET member or constructor parameter. @@ -5208,10 +5455,22 @@ - Gets the name of the property. + Gets or sets the name of the property. The name of the property. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + Gets the that will get and set the during serialization. @@ -5231,6 +5490,12 @@ The converter. + + + Gets the member converter. + + The member converter. + Gets a value indicating whether this is ignored. @@ -5249,12 +5514,6 @@ true if writable; otherwise, false. - - - Gets the member converter. - - The member converter. - Gets the default value. @@ -5311,16 +5570,28 @@ A predicate used to determine whether the property should be serialize. + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + A collection of objects. - + Initializes a new instance of the class. - The contract. + The type. @@ -5352,407 +5623,6 @@ Type property name string comparison. A matching property if found. - - - Specifies missing member handling options for the . - - - - - Ignore a missing member and do not attempt to deserialize it. - - - - - Throw a when a missing member is encountered during deserialization. - - - - - Specifies null value handling options for the . - - - - - Include null values when serializing and deserializing objects. - - - - - Ignore null values when serializing and deserializing objects. - - - - - Specifies reference loop handling options for the . - - - - - Throw a when a loop is encountered. - - - - - Ignore loop references and do not serialize. - - - - - Serialize loop references. - - - - - An in-memory representation of a JSON Schema. - - - - - Initializes a new instance of the class. - - - - - Reads a from the specified . - - The containing the JSON Schema to read. - The object representing the JSON Schema. - - - - Reads a from the specified . - - The containing the JSON Schema to read. - The to use when resolving schema references. - The object representing the JSON Schema. - - - - Load a from a string that contains schema JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Parses the specified json. - - The json. - The resolver. - A populated from the string that contains JSON. - - - - Writes this schema to a . - - A into which this method will write. - - - - Writes this schema to a using the specified . - - A into which this method will write. - The resolver used. - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets or sets the id. - - - - - Gets or sets the title. - - - - - Gets or sets whether the object is optional. - - - - - Gets or sets whether the object is read only. - - - - - Gets or sets whether the object is visible to users. - - - - - Gets or sets whether the object is transient. - - - - - Gets or sets the description of the object. - - - - - Gets or sets the types of values allowed by the object. - - The type. - - - - Gets or sets the pattern. - - The pattern. - - - - Gets or sets the minimum length. - - The minimum length. - - - - Gets or sets the maximum length. - - The maximum length. - - - - Gets or sets the maximum decimals. - - The maximum decimals. - - - - Gets or sets the minimum. - - The minimum. - - - - Gets or sets the maximum. - - The maximum. - - - - Gets or sets the minimum number of items. - - The minimum number of items. - - - - Gets or sets the maximum number of items. - - The maximum number of items. - - - - Gets or sets the of items. - - The of items. - - - - Gets or sets the of properties. - - The of properties. - - - - Gets or sets the of additional properties. - - The of additional properties. - - - - Gets or sets a value indicating whether additional properties are allowed. - - - true if additional properties are allowed; otherwise, false. - - - - - Gets or sets the required property if this property is present. - - The required property if this property is present. - - - - Gets or sets the identity. - - The identity. - - - - Gets or sets the a collection of valid enum values allowed. - - A collection of valid enum values allowed. - - - - Gets or sets a collection of options. - - A collection of options. - - - - Gets or sets disallowed types. - - The disallow types. - - - - Gets or sets the default value. - - The default value. - - - - Gets or sets the extend . - - The extended . - - - - Gets or sets the format. - - The format. - - - - Generates a from a specified . - - - - - Generate a from the specified type. - - The type to generate a from. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - The used to resolve schema references. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - Specify whether the generated root will be nullable. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - The used to resolve schema references. - Specify whether the generated root will be nullable. - A generated from the specified type. - - - - Gets or sets how undefined schemas are handled by the serializer. - - - - - Gets or sets the contract resolver. - - The contract resolver. - - - - The value types allowed by the . - - - - - No type specified. - - - - - String type. - - - - - Float type. - - - - - Integer type. - - - - - Boolean type. - - - - - Object type. - - - - - Array type. - - - - - Null type. - - - - - Any type. - - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Gets or sets the object member serialization. - - The member object serialization. - - - - Gets the object's properties. - - The object's properties. - - - - Gets or sets the parametrized constructor used to create the object. - - The parametrized constructor. - Contract details for a used by the . @@ -5764,6 +5634,16 @@ The underlying type for the contract. + + + Represents a method that constructs an object. + + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + Get and set values for a using reflection. @@ -5789,16 +5669,6 @@ The target to get the value from. The value. - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - - - - Represents a method that constructs an object. - - Specifies type name handling options for the . @@ -5829,6 +5699,87 @@ Always include the .NET type name when serializing. + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Returns the index of the first occurrence in a sequence by using the default equality comparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + Converts the value to the specified type. @@ -6002,225 +5953,6 @@ The enum type to get the maximum value for. - - - Specifies the type of Json token. - - - - - This is returned by the if a method has not been called. - - - - - An object start token. - - - - - An array start token. - - - - - A constructor start token. - - - - - An object property name. - - - - - A comment. - - - - - Raw JSON. - - - - - An interger. - - - - - A float. - - - - - A string. - - - - - A boolean. - - - - - A null token. - - - - - An undefined token. - - - - - An object end token. - - - - - An array end token. - - - - - A constructor end token. - - - - - A Date. - - - - - Byte data. - - - - - Specifies the state of the . - - - - - An exception has been thrown, which has left the in an invalid state. - You may call the method to put the in the Closed state. - Any other method calls results in an being thrown. - - - - - The method has been called. - - - - - An object is being written. - - - - - A array is being written. - - - - - A constructor is being written. - - - - - A property is being written. - - - - - A write method has not been called. - - - - - Specifies formatting options for the . - - - - - No special formatting is applied. This is the default. - - - - - Causes child objects to be indented according to the and settings. - - - - - Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Determines whether the collection is null, empty or its contents are uninitialized values. - - The list. - - true if the collection is null or empty or its contents are uninitialized values; otherwise, false. - - - - - Makes a slice of the specified list in between the start and end indexes. - - The list. - The start index. - The end index. - A slice of the list. - - - - Makes a slice of the specified list in between the start and end indexes, - getting every so many items based upon the step. - - The list. - The start index. - The end index. - The step. - A slice of the list. - - - - Group the collection using a function which returns the key. - - The source collection to group. - The key selector. - A Dictionary with each key relating to a list of objects in a list grouped under it. - - - - Adds the elements of the specified collection to the specified generic IList. - - The list to add to. - The collection of elements to add. - Gets the type of the typed collection's items. @@ -6286,16 +6018,22 @@ true if the specified MemberInfo can be read; otherwise, false. - + Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + Determines whether the string contains white space. @@ -6360,5 +6098,477 @@ The string. Null if the string was null, otherwise the string unchanged. + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + diff --git a/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.dll new file mode 100644 index 000000000..48049d2a8 Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.pdb new file mode 100644 index 000000000..d404ef0fe Binary files /dev/null and b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.xml similarity index 88% rename from packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml rename to packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.xml index ecfee1db9..d787f1008 100644 --- a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml +++ b/packages/Newtonsoft.Json.4.0.4/lib/sl4/Newtonsoft.Json.xml @@ -1,7 +1,7 @@ - Newtonsoft.Json.Silverlight + Newtonsoft.Json @@ -48,6 +48,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Skips the children of the current token. @@ -93,6 +105,16 @@ The current reader state. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + Gets the quotation mark character used to enclose the value of a string. @@ -211,6 +233,20 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + + A . + + Reads the next JSON token from the stream. @@ -219,6 +255,19 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + Gets or sets a value indicating whether the root object will be read as a JSON array. @@ -445,6 +494,18 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. @@ -535,12 +596,30 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value. The value to write. + + + Writes a value. + + The value to write. + Writes a value. @@ -560,6 +639,16 @@ The string of white space characters. + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + Gets the top. @@ -633,6 +722,11 @@ The name of the property. + + + Closes this stream and the underlying stream. + + Writes a null value. @@ -745,6 +839,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes a value that represents a BSON object id. @@ -956,6 +1068,46 @@ true if this instance can convert the specified object type; otherwise, false. + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). @@ -1113,6 +1265,9 @@ Converts an to and from its name string value. + + Converts an to and from its name string value. + @@ -1132,15 +1287,28 @@ The calling serializer. The object value. + + + A cached representation of the Enum string representation to respect per Enum field name. + + The type of the Enum. + A map of enum field name to either the field name, or the configured enum member name (). + Determines whether this instance can convert the specified object type. Type of the object. - true if this instance can convert the specified object type; otherwise, false. + true if this instance can convert the specified object type; otherwise, false. + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + Indicates the method that will be used during deserialization for locating and loading assemblies. @@ -1163,12 +1331,25 @@ - Include default values when serializing and deserializing objects. + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. - Ignore default values when serializing and deserializing objects. + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. @@ -1266,6 +1447,11 @@ true if null items are allowed in the collection; otherwise, false. + + + Instructs the not to serialize the public field or public read/write property value. + + Provides methods for converting between common language runtime types and JSON types. @@ -1425,6 +1611,20 @@ The value to convert. A JSON string representation of the . + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + Converts the to its JSON string representation. @@ -1495,54 +1695,65 @@ - Deserializes the specified object to a Json object. + Deserializes the JSON to a .NET object. - The object to deserialize. + The JSON to deserialize. The deserialized object from the Json string. + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + - Deserializes the specified object to a Json object. + Deserializes the JSON to the specified .NET type. - The object to deserialize. + The JSON to deserialize. The of object being deserialized. The deserialized object from the Json string. - Deserializes the specified object to a Json object. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. - The object to deserialize. + The type of the object to deserialize to. + The JSON to deserialize. The deserialized object from the Json string. - Deserializes the specified JSON to the given anonymous type. + Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. - The object to deserialize. + The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. - The object to deserialize. + The type of the object to deserialize to. + The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The type of the object to deserialize. + The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. @@ -1552,19 +1763,19 @@ - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. - The object to deserialize. + The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. - Deserializes the JSON string to the specified type. + Deserializes the JSON to the specified .NET type. The JSON to deserialize. - The type of the object to deserialize. + The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be is used. @@ -1696,6 +1907,12 @@ Whether this property's value is serialized as a reference. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + Gets or sets the name of the property. @@ -2063,6 +2280,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Changes the state to closed. @@ -2076,6 +2305,11 @@ true if LineNumber and LinePosition can be provided; otherwise, false. + + + Gets or sets the culture used when reading JSON. Defaults to . + + Gets the current line number. @@ -2274,6 +2508,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Writes out a comment /*...*/ containing the specified text. @@ -2288,7 +2540,7 @@ - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. @@ -2298,7 +2550,7 @@ - Gets or sets which character to use for indenting when is set to Formatting.Indented. + Gets or sets which character to use for indenting when is set to Formatting.Indented. @@ -2421,6 +2673,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Reads the next JSON token from the stream. @@ -2857,6 +3121,20 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -2864,6 +3142,20 @@ The value. The result of the conversion. + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + Performs an explicit conversion from to . @@ -3004,6 +3296,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -3053,6 +3352,13 @@ The value to create a from. The initialized with the specified value. + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + Performs an implicit conversion from to . @@ -3137,6 +3443,19 @@ The that will be used when reading the object. A with the value of the specified object + + + Creates the specified .NET type from the . + + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The that will be used when creating the object. + The new object created from the JSON value. + Creates a from a . @@ -3148,6 +3467,24 @@ by the token type of the first token encountered in the reader. + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + Selects the token that matches the object path. @@ -3173,6 +3510,30 @@ A flag to indicate whether an error should be thrown if no token is found. The that matches the object path. + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + Gets a comparer that can compare two tokens for value equality. @@ -3298,6 +3659,12 @@ Occurs when the items list of the collection has changed, or the collection is reset. + + + Gets the container's children tokens. + + The container's children tokens. + Gets a value indicating whether this token has childen tokens. @@ -3322,6 +3689,12 @@ A containing the last child token of the . + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + Initializes a new instance of the class. @@ -3441,6 +3814,12 @@ The is read-only. + + + Gets the container's children tokens. + + The container's children tokens. + Gets the node type for this . @@ -3459,13 +3838,6 @@ - - - Gets the number of elements contained in the . - - - The number of elements contained in the . - Represents a JSON constructor. @@ -3516,6 +3888,12 @@ A that will be read for the content of the . A that contains the JSON that was read from the specified . + + + Gets the container's children tokens. + + The container's children tokens. + Gets or sets the name of this constructor. @@ -3709,6 +4087,21 @@ Name of the property. + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Gets the container's children tokens. + + The container's children tokens. + Occurs when a property value changes. @@ -3732,13 +4125,6 @@ - - - Gets the number of elements contained in the . - - - The number of elements contained in the . - Represents a JSON property. @@ -3750,14 +4136,6 @@ A object to copy from. - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - Initializes a new instance of the class. @@ -3786,6 +4164,12 @@ A that will be read for the content of the . A that contains the JSON that was read from the specified . + + + Gets the container's children tokens. + + The container's children tokens. + Gets the property name. @@ -3856,6 +4240,24 @@ The value. + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + Initializes a new instance of the class with the given value. @@ -3912,6 +4314,71 @@ A hash code for the current . + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + Gets a value indicating whether this token has childen tokens. @@ -3960,8 +4427,8 @@ Determines whether the specified objects are equal. - The first object of type to compare. - The second object of type to compare. + The first object of type to compare. + The second object of type to compare. true if the specified objects are equal; otherwise, false. @@ -3993,6 +4460,18 @@ A or a null reference if the next JSON token is null. + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + Reads the next JSON token from the stream. @@ -4081,6 +4560,21 @@ A collection of bytes value. + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. @@ -4259,6 +4753,24 @@ The value to write. + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + Gets the token being writen. @@ -4467,6 +4979,22 @@ Type of the object. A for the given type. + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + Resolves the default for the contract. @@ -4502,6 +5030,13 @@ Type of the object. A for the given type. + + + Creates a for the given type. + + Type of the object. + A for the given type. + Creates a for the given type. @@ -4516,12 +5051,13 @@ Type of the object. A for the given type. - + - Creates properties for the given . + Creates properties for the given . - The contract to create properties for. - Properties for the given . + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . @@ -4530,11 +5066,11 @@ The member. The used by the serializer to get and set values from a member. - + Creates a for the given . - The member's declaring types . + The member's parent . The member to create a for. A created for the given . @@ -4585,33 +5121,37 @@ Used to resolve references when serializing and deserializing JSON by the . - + Resolves a reference to its object. + The serialization context. The reference to resolve. The object that - + Gets the reference for the sepecified object. + The serialization context. The object to get a reference for. The reference to the object. - + Determines whether the specified object is referenced. + The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. - + Adds a reference to the specified object. + The serialization context. The reference. The object to reference. @@ -4630,6 +5170,14 @@ The type of the object the formatter creates a new instance of. + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + Provides information surrounding an error. @@ -4795,6 +5343,35 @@ The underlying type for the contract. + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + Contract details for a used by the . @@ -4829,6 +5406,19 @@ The object's properties. + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + Gets or sets the parametrized constructor used to create the object. @@ -4848,7 +5438,7 @@ - Maps a JSON property to a .NET member. + Maps a JSON property to a .NET member or constructor parameter. @@ -4861,10 +5451,22 @@ - Gets the name of the property. + Gets or sets the name of the property. The name of the property. + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + Gets the that will get and set the during serialization. @@ -4884,6 +5486,12 @@ The converter. + + + Gets the member converter. + + The member converter. + Gets a value indicating whether this is ignored. @@ -4902,12 +5510,6 @@ true if writable; otherwise, false. - - - Gets the member converter. - - The member converter. - Gets the default value. @@ -4964,16 +5566,28 @@ A predicate used to determine whether the property should be serialize. + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + A collection of objects. - + Initializes a new instance of the class. - The contract. + The type. @@ -5005,6 +5619,14 @@ Type property name string comparison. A matching property if found. + + + Serializes the dynamic. + + The writer. + The value. + The contract. + Contract details for a used by the . @@ -5143,6 +5765,25 @@ The list to add to. The collection of elements to add. + + + Returns the index of the first occurrence in a sequence by using the default equality comparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + Converts the value to the specified type. @@ -5274,6 +5915,32 @@ true if initialValue was converted successfully or is assignable; otherwise, false. + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + Parses the specified enum member name, returning it's value. @@ -5381,12 +6048,13 @@ true if the specified MemberInfo can be read; otherwise, false. - + Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. @@ -5640,9 +6308,9 @@ Gets or sets the title. - + - Gets or sets whether the object is optional. + Gets or sets whether the object is required. @@ -5689,11 +6357,11 @@ The maximum length. - + - Gets or sets the maximum decimals. + Gets or sets a number that the value should be divisble by. - The maximum decimals. + A number that the value should be divisble by. @@ -5707,6 +6375,18 @@ The maximum. + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + Gets or sets the minimum number of items. @@ -5737,6 +6417,12 @@ The of additional properties. + + + Gets or sets the pattern properties. + + The pattern properties. + Gets or sets a value indicating whether additional properties are allowed. diff --git a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.dll b/packages/twitterizer.2.3.3/lib/35/Twitterizer2.dll deleted file mode 100644 index 417bddae7..000000000 Binary files a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.dll and /dev/null differ diff --git a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.license.txt b/packages/twitterizer.2.3.3/lib/35/Twitterizer2.license.txt deleted file mode 100644 index 9548bfdb0..000000000 --- a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.license.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2010, Patrick "Ricky" Smith -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - - Neither the name Twitterizer nor the names of its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.pdb b/packages/twitterizer.2.3.3/lib/35/Twitterizer2.pdb deleted file mode 100644 index 81d6943a7..000000000 Binary files a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.pdb and /dev/null differ diff --git a/packages/twitterizer.2.3.3/twitterizer.2.3.3.nupkg b/packages/twitterizer.2.3.3/twitterizer.2.3.3.nupkg deleted file mode 100644 index 988160b54..000000000 Binary files a/packages/twitterizer.2.3.3/twitterizer.2.3.3.nupkg and /dev/null differ diff --git a/packages/twitterizer.2.4.0.26532/content/GettingStarted.txt b/packages/twitterizer.2.4.0.26532/content/GettingStarted.txt new file mode 100644 index 000000000..2a261b11c --- /dev/null +++ b/packages/twitterizer.2.4.0.26532/content/GettingStarted.txt @@ -0,0 +1,46 @@ + ___ ___ ___ ___ __ __ ___ __ _ _ _ + | | | | | | |__ |__) | / |__ |__) | | + | |/\| | | | |___ | \ | /_ |___ | \ _|_|_ + +Q) Which files do I need? +A) More than likely, you only need Twitterizer2.dll and Newtonsoft.Json.dll + +Q) What exactly are all these files? +A) + Twitterizer2.dll + This is the main binary which contains the core class library. This file is required for all addon + libraries. + + Twitterizer2.Data.dll + This is an additional library that provides data conversion functionality. + For example, with it you can quickly generate DataTables from any Twitterizer2 collection. + This file is not necessary for most projects. + + Newtonsoft.Json.dll + This is JSON.NET, developed by James Newton-King. You do not need to add a reference in your + project to this library, but it must be placed in your project's bin folder along with Twitterizer2.dll. + More information can be found here: http://james.newtonking.com/pages/json-net.aspx + + Twitterizer2.Async.dll + This is an addon library that allows developers to call Twitterizer2 methods asynchronously. + This file is not necessary for most projects. + + Twitterizer2.Streaming.dll + This is an addon library that provides access to the Streaming API. + This file is not necessary for most projects. + + Twitterizer.OAuth.dll + This is a standalone library that provides access to our OAuth request signing functionality without + using Twitterizer2. _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. + All of the functionality found in this library is available within Twitterizer2.dll. + This file is not necessary for most projects. + + Twitterizer2lite.dll + This is a slimmed down version of the Twitterizer2.dll file built with the client profile as the target framework. + It will lack some extra pieces of functionality, such as the built-in data caching and support for application + configuration settings. + _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. + This file is not necessary for most projects. + +Q) What about the license files? +A) The license files must accompany the dlls. That means that they must be distributed along with your application. \ No newline at end of file diff --git a/packages/twitterizer.2.4.0.26532/content/Json.NET.license.txt b/packages/twitterizer.2.4.0.26532/content/Json.NET.license.txt new file mode 100644 index 000000000..c96b57855 --- /dev/null +++ b/packages/twitterizer.2.4.0.26532/content/Json.NET.license.txt @@ -0,0 +1,7 @@ +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.XML b/packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.XML similarity index 91% rename from packages/twitterizer.2.3.3/lib/35/Twitterizer2.XML rename to packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.XML index 344848830..015821f24 100644 --- a/packages/twitterizer.2.3.3/lib/35/Twitterizer2.XML +++ b/packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.XML @@ -4,10 +4,13 @@ Twitterizer2 - + - The TwitterUser class represents a twitter user account and provides methods for interacting with user-centric API methods. - + Represents the callback signature for asynchronous methods. + + + The result. + @@ -42,6 +45,2277 @@ The annotations. + + + The Show User Command + + http://dev.twitter.com/doc/get/users/show + + + + The base command class. + + The business object the command should return. + + + + The ICommand interface. + + The Type of the BaseObject that the command returns + + + + + Initializes the command. + + + + + Executes the command. + + The results of the command. + + + + + Gets the request parameters. + + The request parameters. + + + + Initializes a new instance of the class. + + The method. + The end point. + The tokens. + The optional properties. + + + + Initializes the command. + + + + + Executes the command. + + The results of the command. + + + + Sets the status code. + + The twitter response. + The status code. + The rate limiting. + + + + Sets the command URI. + + The end point. + + + + Parses the rate limit headers. + + The headers of the web response. + An object that contains the rate-limiting info contained in the response headers + + + + Parses the access level headers. + + The headers of the web response. + An enum of the current access level of the OAuth Token being used. + + + + Adds the result to cache. + + The cache key builder. + The cache. + The result object. + + + + Gets or sets the optional properties. + + The optional properties. + + + + Gets or sets the API method URI. + + The URI for the API method. + + + + Gets or sets the method. + + The method. + + + + Gets or sets the request parameters. + + The request parameters. + + + + Gets or sets the serialization delegate. + + The serialization delegate. + + + + Gets the request tokens. + + The request tokens. + + + + Gets or sets a value indicating whether this is multipart. + + true if multipart; otherwise, false. + + + + Initializes a new instance of the class. + + The request tokens. + The user id. + The username. + The options. + + + + Inits this instance. + + + + + Gets or sets the user ID. + + The user ID. + + + + Gets or sets the name of the user. + + The name of the user. + + + + The User Search Command class. + + + + + Initializes a new instance of the class. + + The request tokens. + The query. + The options. + + + + Initializes the command. + + + + + Gets or sets the query. + + The query. + + + + The suggested users command class + + http://dev.twitter.com/doc/get/users/suggestions/:slug + + + + Initializes a new instance of the class. + + The tokens. + The category slug. + The options. + + + + Inits this instance. + + + + + Gets or sets the slug. + + The slug. + + + + The Lookup Users command class. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Inits this instance. + + + + + Represents a pre-parsed url located within the body of a . + + + + + The base class for twitter entities that describe tweet text. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the start index. + + The start index. + + + + Gets or sets the end index. + + The end index. + + + + Initializes a new instance of the class. + + + + + Gets or sets the URL parsed from the tweet text. + + The parsed URL. + + + + Gets or sets the Display URL parsed from the tweet text. + + The parsed Display URL. + + + + Gets or sets the Expanded URL parsed from the tweet text. + + The parsed Expanded URL. + + + + Provides interaction with timelines + + + + + Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. This is the equivalent of /timeline/home on the Web. + + The tokens. + The options. + A collection of items. + + + The tokens. + A collection of items. + + + The options. + A collection of items. + + + + Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. + + The oauth tokens. + The options. + + A instance. + + + + + Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. + + The oauth tokens. + + A instance. + + + + + Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. + + The options. + + A instance. + + + + + Gets the public timeline. + + A . + + + + Returns the 20 most recent statuses, including retweets if they exist, from non-protected users. The public timeline is cached for 60 seconds. + + The oauth tokens. + + A . + + + + + Returns the 20 most recent statuses, including retweets if they exist, from non-protected users. The public timeline is cached for 60 seconds. + + The properties. + + A . + + + + + Returns the 20 most recent statuses, including retweets if they exist, from non-protected users. The public timeline is cached for 60 seconds. + + The oauth tokens. + The options. + A . + + + + + Obtains the authorized user's friends timeline. + + The tokens. + A . + + + + Obtains the authorized user's friends timeline. + + The tokens. + The options. + A . + + + + Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. + + The tokens. + The options. + A instance. + + + + Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. + + The tokens. + + A instance. + + + + + Returns the 20 most recent retweets posted by the authenticating user. + + The tokens. + The options. + A instance. + + + + Returns the 20 most recent retweets posted by the authenticating user. + + The tokens. + + A instance. + + + + + Returns the 20 most recent retweets posted by the authenticating user's friends. + + The tokens. + The options. + A instance. + + + + Returns the 20 most recent retweets posted by the authenticating user's friends. + + The tokens. + + A instance. + + + + + Returns the 20 most recent mentions (status containing @username) for the authenticating user. + + The tokens. + The options. + A instance. + + + + Returns the 20 most recent mentions (status containing @username) for the authenticating user. + + The tokens. + + A instance. + + + + + The TwitterTrendLocation class. + + + + + Gets or sets the name. + + The name of the trend. + + + + Gets or sets the WOEID. + + The WOEID of the trend. + + + + Provides methods to update a user's preferences on notifications. For example, whether a user will be notified on mention via SMS. + + + + + Enables device notifications for updates from the specified user. Returns the specified user when successful. + + The tokens. + The user id. + The options. + + + + + Enables device notifications for updates from the specified user. Returns the specified user when successful. + + The tokens. + The user id. + + + + + Enables device notifications for updates from the specified user. Returns the specified user when successful. + + The tokens. + The user's screen name. + The options. + + + + + Enables device notifications for updates from the specified user. Returns the specified user when successful. + + The tokens. + The user's screen name. + + + + + Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. + + The tokens. + The user id. + The options. + + + + + Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. + + The tokens. + The user id. + + + + + Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. + + The tokens. + The user's screen name. + The options. + + + + + Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. + + The tokens. + The user's screen name. + + + + + Provides optional parameters for the method. + + + + + Provides a base class for method specific optional parameters, as well as properties for providing configuration settings at run time. + + + + + Initializes a new instance of the class. + + + + + Reads the configuration settings. + + + + + Allows modification of the API endpoint addresses to enable SSL communication. + + The default value can be set at an application level by adding a Twitterizer2.EnableSSL application setting with the value true. + For example: + + + + + + +]]> + + + The current configured value. true if enabled, otherwise false. Default: false + + + Allows configuration of the base address for API method requests for support for 3rd party 'twitter-like' APIs. + + + + + The default value can be set at an application level by adding a Twitterizer2.APIBaseAddress application setting with the base address as the value. + For example: + + + + + + +]]> + + The API end point base address. Default: "http://api.twitter.com/1/" + + + + Allows overriding of the default proxy settings for API call requests. + + The supplied , or null. + + + + + Allows run time enabling of API output caching. + + The default value can be set at an application level by adding a Twitterizer2.EnableCaching application setting with value true. + For example: + + + + + + +]]> + + + The currently configured value. true if enabled, otherwise false. Default: false + + + + + Allows configuration of the sliding expiration timespan for output caching. + + The default value can be set at an application level by adding a Twitterizer2.CacheTimeout application setting with value equal to the number of seconds of the duration. + For example: + + + + + + +]]> + + + The duration that API output should be cached, on a sliding expiration, once enabled. Default: 5 minutes + + + + + Gets or sets the cursor. + + The cursor. + + + + The twitter place class. Represents a place or area. + + + + + Retrieves a place based on the specified coordinates. + + The latitude. + The longitude. + The options. + A collection of matched items. + + + + Retrieves a place based on the specified coordinates. + + The latitude. + The longitude. + A collection of matched items. + + + + Gets or sets the country code. + + The country code. + + + + Gets or sets the type of the place. + + The type of the place. + + + + Gets or sets the address of the data. + + The address of the data. + + + + Gets or sets the country. + + The country. + + + + Gets or sets the address of the street. + + The address of the street. + + + + Gets or sets the full name. + + The full name. + + + + Gets or sets the name of the place. + + The name of the place. + + + + Gets or sets the place id. + + The place id. + + + + Gets or sets the bounding box. + + The bounding box. + + + + The optional parameters for the class. + + + + + Gets or sets the page. + + The page. + + + + Provides methods to request and modify details of an authorized user's account details. + + + + + Verifies the user's credentials. + + The tokens. + The options. + + + + + Verifies the user's credentials. + + The tokens. + + + + + Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com + + The tokens. + The options. + + The user, with updated data, as a + + + + + Updates the authenticating user's profile image. + + The tokens. + The image data. + The options. + + The user, with updated data, as a + + + + + Updates the authenticating user's profile image. + + The tokens. + The image location. + The options. + + The user, with updated data, as a + + + + + Updates the authenticating user's profile background image. This method can also be used to enable or disable the profile background image. + + The tokens. + The image data. + The options. + + + + + Updates the authenticating user's profile background image. This method can also be used to enable or disable the profile background image. + + The tokens. + The image location. + The options. + + + + + Sets values that users are able to set under the "Account" tab of their settings page. Only the parameters specified will be updated. + + The tokens. + The options. + + + + + + The command to update the user's status. (a.k.a. post a new tweet) + + + + + Initializes a new instance of the class. + + The request tokens. + The status text. + The optional properties. + + + + Initializes the command. + + + + + Gets or sets the status text. + + The status text. + + + + The Show Status Command + + + + + Initializes a new instance of the class. + + The request tokens. + The status id. + The options. + + + + Inits this instance. + + + + + The timeline options class. Provides optional parameters for timeline methods. + + + + + Initializes a new instance of the class. + + + + + Initializes the specified command. + + + The command. + The options. + + + + Gets or sets the minimum (earliest) status id to request. + + The since id. + + + + Gets or sets the max (latest) status id to request. + + The max id. + + + + Gets or sets the number of messages to request. + + The number of messages to request. + + + + Gets or sets the page number to request. + + The page number. + + + + Gets or sets a value indicating whether user objects should contain only Id values. + + true if user objects should contain only Id values; otherwise, false. + + + + Gets or sets a value indicating whether [include retweets]. + + true if [include retweets]; otherwise, false. + + + + The Create Saved Search Command class. Creates the Saved Search with the query provided as the authenticating user. Returns the saved search when successful. + + + + + Initializes a new instance of the class. + + The tokens. + The query. + The options. + + + + Initializes the command. + + + + + Gets or sets the query. + + The query. + + + + The Saved Searches Command class. Returns the saved searches collection when successful. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Initializes the command. + + + + + Returns the members of the specified list. + + + + + Initializes a new instance of the class. + + The request tokens. + The username. + The list id or slug. + The options. + + + + Initializes the command. + + + + + The Get Lists Options class + + + + + Gets or sets the cursor. + + The cursor. + + + + The optional properties for the class. + + + + + Gets or sets the cursor. + + The cursor. + + + + The Status Update Options class + + + + + Initializes a new instance of the class. + + + + + Gets or sets the in reply to status id. + + The in reply to status id. + + + + Gets or sets the latitude. + + The latitude. + + + + Gets or sets the longitude. + + The longitude. + + + + Gets or sets a value indicating whether or not to put a pin on the exact coordinates a tweet has been sent from. + + true to put a pin on the exact coordinates; otherwise, false. + + + + Gets or sets a place in the world. These IDs can be retrieved from geo/reverse_geocode. + + The place id. + + + + The information class which gives general information about the assembly. + + + + + Obtains the current assembly version. + + The assembly version string in the format (#.#.#.#) + + + + The Retweeted By Me Command. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + The Mentions Command class + + + + + The Paged Timeline Command class. Provides common functionality for all of the paged timeline command classes. + + + + + + Initializes a new instance of the class. + + The HTTP method. + The end point. + The tokens. + The optional properties. + + + + Initializes the command. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Inits this instance. + + + + + The get lists command class + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + + Initializes the command. + + + + + The optional properties class for the method. + + + + + + Specifies the number of records to retrieve. Must be less than or equal to 100. + + The count. + + + + Specifies the page of results to retrieve. + + The page. + + + + When set to true each tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object. + + true if [trim user]; otherwise, false. + + + + Gets or sets a value indicating whether entities should be included in the results. + + true if entities should be included; otherwise, false. + + + + The Related Results Command. + + + + + The base address to the API method. + + + + + Initializes a new instance of the class. + + The request tokens. + The status id. + The options. + + + + Initializes the command. + + + + + Represents a pre-parsed media entity located within the body of a . + + + + + + Initializes a new instance of the class. + + + + + Gets or sets the type of the media. + + The type of the media. + + + + + Gets or sets the id. + + The id. + + + + + Gets or sets the id string. + + The id string. + + + + + Gets or sets the media URL. + + The media URL. + + + + + Gets or sets the media URL secure. + + The media URL secure. + + + + + Gets or sets the sizes. + + The sizes. + + + + + The list of currently available and supported media types. + + + + + + (default) Indicates the media type returned is unsupported. + + + + + Indicates the media type returned is a photo. + + + + + Represents the display size of a media entity. + + + + + + Gets or sets the size. + + The size. + + + + + Gets or sets the width. + + The width. + + + + + Gets or sets the height. + + The height. + + + + + Gets or sets the resize. + + The resize. + + + + + The enumerated types of reszing that could be applied to the media entity. + + + + + + Indicates that the resizing method was unrecognized. + + + + + Indicates that the media entity was cropped. + + + + + Indicates that the media entity was resized to fit without cropping. + + + + + The list of recognized media sizes. + + + + + + (default) Indicates that the size provided by the API was unrecognized. + + + + + Indicates that the media entity is a thumbnail size. + + + + + Indicates that the media entity is a small size. + + + + + Indicates that the media entity is a medium size. + + + + + Indicates that the media entity is a large size. + + + + + Represents a single point on planet earth. + + + + + Gets or sets the latitude. + + The latitude. + + + + Gets or sets the longitude. + + The longitude. + + + + Reads a json array of coordinates and converts it into a collection of coordinate objects. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Reads the json. + + The reader. + Type of the object. + The existing value. + The serializer. + A deserialized + + + + Writes the json. + + The writer. + The value. + The serializer. + + + + The blocking command class. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Inits this instance. + + + + + The Verify Credentials Options class. Provides a payload for optional parameters for the Verify Credentials Command. + + + + + Initializes a new instance of the class. + + + + + Gets or sets a value indicating whether [include entities]. + + true if [include entities]; otherwise, false. + + + + The base class for object collections. + + The type of object stored in the collection. + + + + Gets or sets the annotations. + + The annotations. + + + + The Serialization Helper class. Provides a simple interface for common serialization tasks. + + The type of object to be deserialized + + + + Deserializes the specified web response. + + The web response data. + The deserialization handler. + + A strongly typed object representing the deserialized data of type + + + + + Deserializes the specified web response. + + The web response data. + + A strongly typed object representing the deserialized data of type + + + + + The JavascriptConversionDelegate. The delegate is invokes when using the JavaScriptSerializer to manually construct a result object. + + Contains nested dictionary objects containing deserialized values for manual parsing. + A strongly typed object representing the deserialized data of type + + + + + The create list command class + + + + + Initializes a new instance of the class. + + The request tokens. + The slug. + The list id. + The options. + + + + + + Initializes the command. + + + + + Gets or sets the list id. + + The list id. + + + + Gets or sets the slug. + + The slug. + + + + The followers options class. Provides a payload for optional parameters of the FollowersCommand class. + + + + + Gets or sets the ID of the user for whom to request a list of followers. + + The user id. + + + + Gets or sets the screen name of the user for whom to request a list of followers. + + The name of the screen. + + + + Gets or sets the cursor. + + The cursor. + + + + The retweeted by ids command class. + + http://dev.twitter.com/doc/get/statuses/:id/retweeted_by/ids + + + + Inits this instance. + + + + + Represents a pre-parsed hash tag in a value. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the hash tag text. + + The hash tag text. + + + + The Create Friendship Options class + + + + + Initializes a new instance of the class. + + + + + Gets or sets a value indicating whether to enable delivery of statuses from this user to the authenticated user's device + + true if follow; otherwise, false. + + + + Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Inits this instance. + + + + + The Direct Message Collection class + + + + + + + + + + + Initializes a new instance of the class. + + The tokens. + The id. + The options. + + + + + Inits this instance. + + + + + + The verify credentials command class. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + The XAuthUtility class. + + + + + Allows OAuth applications to directly exchange Twitter usernames and passwords for OAuth access tokens and secrets. + + The consumer key. + The consumer secret. + The username. + The password. + A instance. + + + + The command to obtain followers of a user. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + The retweet command class. + + + + + The base address to the API method. + + + + + Initializes a new instance of the class. + + The request tokens. + The status id. + The options. + + + + Initializes the command. + + + + + Provides methods for reporting users and tweets as inappropriate or spam. + + + + + Blocks the user and reports them for spam/abuse. + + The tokens. + The user id. + The options. + The user details. + + + + Blocks the user and reports them for spam/abuse. + + The tokens. + The user id. + The user details. + + + + Blocks the user and reports them for spam/abuse. + + The tokens. + The user's screen name. + The options. + The user details. + + + + Blocks the user and reports them for spam/abuse. + + The tokens. + The user's screen name. + The user details. + + + + The TwitterSavedSearchCollection class. + + + + + Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list. + + + + + Initializes a new instance of the class. + + The request tokens. + The owner username. + The list id. + The user id. + The options. + + + + Initializes the command. + + + + + Gets or sets the user id. + + The user id. + + + + The optional parameters for the class. + + + + + Gets or sets the cursor. + + The cursor. + + + + Lists the possible types of geographic boundaries. + + + + + A single point. Expect one coordinate. + + + + + A line, or multiple lines joined end-to-end. + + + + + A polygon-shaped area. + + + + + A circle represented by a single point (the center) and the radius. + + + + + Represents a geological area + + + + + Gets or sets the type of the shape. + + The type of the shape. + + + + Gets or sets the coordinates. + + The coordinates. + + + + The twitter bounding box class. Represents a series of latitude and longitude coordinates that represents an area. + + + + + Gets or sets the type. + + The type of bounding box. + + + + Gets or sets the coordinates. + + The coordinates. + + + + Creates a friendship between the authenticated user and another user + + + + + The base address to the API method. + + + + + Initializes a new instance of the class. + + The request tokens. + The userid. + The optional properties. + + + + Initializes a new instance of the class. + + The request tokens. + Name of the user. + The optional properties. + + + + Initializes the command. + + + + + Gets or sets the user id. + + The user id. + + + + Gets or sets the username. + + The username. + + + + The exists block command class. + + http://dev.twitter.com/doc/post/blocks/exists + + + + Initializes a new instance of the class. + + The tokens. + Name of the screen. + The user id. + The options. + + + + Inits this instance. + + + + + Gets or sets the name of the screen. + + The name of the screen. + + + + Gets or sets the user id. + + The user id. + + + + The Twitterizer Exception + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Parses the rate limit headers. + + The response. + + + + Gets or sets the result. + + The result. + + + + Gets or sets the response body. + + The response body. + + + + Gets or sets the rate limits. + + The rate limits. + + + + Gets or sets the error details. + + The error details. + + + + Gets the response that the remote host returned. + + + If a response is available from the Internet resource, a instance that contains the error response from an Internet resource; otherwise, null. + + + + Gets the bug report. + + The bug report. + + + + The Twitter Rate Limit Status class + + + + + Gets the rate limiting status status for the authenticated user. + + The OAuth tokens. + The options. + + A instance. + + + + + Gets the rate limiting status status based on the application's IP address. + + The OAuth tokens. + + A instance. + + + + + Gets the rate limiting status status based on the application's IP address. + + + A instance. + + + + + Gets or sets the remaining hits. + + The remaining hits. + + + + Gets or sets the hourly limit. + + The hourly limit. + + + + Gets or sets the UTC string value of the time rate limiting will reset. + + The reset time string. + + + + The rate limit status command class. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + The command to update the user's status. (a.k.a. post a new tweet) + + + + + Initializes a new instance of the class. + + The request tokens. + The status text. + The file to upload. + The optional properties. + + + + Initializes the command. + + + + + Gets or sets the status text. + + The status text. + + + + Gets or sets the file location. + + The file location. + + + + The TwitterTrendCollection class. Represents multiple elements. + + + + + The Json converter class for the TwitterTrendCollection object + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Reads the json. + + The reader. + Type of the object. + The existing value. + The serializer. + A collection of items. + + + + Writes the json. + + The writer. + The value. + The serializer. + + + + The notification follow command class. + + + + + Initializes a new instance of the class. + + The tokens. + The user id. + Name of the screen. + The options. + + + + Inits this instance. + + + + + Gets or sets the user id. + + The user id. + + + + Gets or sets the name of the screen. + + The name of the screen. + + + + The create list command class + + + + + Initializes a new instance of the class. + + The request tokens. + Name of the user. + The options. + + + + + Initializes the command. + + + + + The reverse geocode command class. Performs a reverse geocode lookup. + + + + + Initializes a new instance of the class. + + The latitude. + The longitude. + The options. + + + + Initializes the command. + + + + + Gets or sets the latitude. + + The latitude. + + + + Gets or sets the longitude. + + The longitude. + + + + Initializes a new instance of the class. + + The tokens. + The image. + The options. + + + + Initializes the command. + + + + + Converts date strings returned by the Twitter API into + + + + + The date pattern for most dates returned by the API + + + + + Reads the json. + + The reader. + Type of the object. + The existing value. + The serializer. + The parsed value as a DateTime, or null. + + + + Writes the json. + + The writer. + The value. + The serializer. + + + + Holds a collection of ID values + + + + + Initializes a new instance of the class. + + + + + + Initializes a new instance of the class. + + The items. + + + + + Performs an explicit conversion from to . + + The collection. + The result of the conversion. + + + + + Annotations are additional pieces of data, supplied by Twitter clients, in a non-structured dictionary. + + The annotations. + + + + Holds extension methods related to the class. + + + + + + Converts the collection to a class. + + The old. + + + + + + Holds a collection of ID values that are broken into multiple pages. + + + + + Deserializes the specified value. + + The value. + + + + + Annotations are additional pieces of data, supplied by Twitter clients, in a non-structured dictionary. + + The annotations. + + + + Gets or sets the next cursor. + + The next cursor. + + + + Gets or sets the previous cursor. + + The previous cursor. + + + + The TwitterUser class represents a twitter user account and provides methods for interacting with user-centric API methods. + + Returns extended information of a given user, specified by ID or screen name as per the required id parameter. The author's most recent status will be returned inline. @@ -49,7 +2323,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The tokens.The user id.Optional parameters for runtime configuration settings. // Declare the user's id variable @@ -82,7 +2356,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The user id.Optional parameters for runtime configuration settings. // Declare the user's id variable @@ -113,7 +2387,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The tokens.The user id. // Declare the user's id variable @@ -138,7 +2412,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The user id. // Declare the user's id variable @@ -163,7 +2437,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The tokens.The user name.The options. // Declare the username variable @@ -196,7 +2470,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The user name.The options. // Declare the username variable @@ -228,7 +2502,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The tokens.The user name. // Declare the username variable @@ -254,7 +2528,7 @@ A new instance of the class. This method interacts with the users/show API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/show - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. The user name. // Declare the username variable @@ -277,7 +2551,7 @@ Run a search for users similar to the Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API. This method interacts with the users/search API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/search - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. A instance. The OAuth access tokens.The search query.Optional parameters. @@ -312,7 +2586,7 @@ Run a search for users similar to the Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API. This method interacts with the users/search API endpoint. Documentation can be found here: http://dev.twitter.com/doc/get/users/search - Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid.Indicates that a command failed pre-execution validation. + Indicates that a required argument was not supplied.Indicates that an argument supplied was not valid. A instance. The OAuth access tokens.The search query. @@ -589,6 +2863,12 @@ The profile image location. + + + Gets or sets the secure profile image location (https). + + The profile image location. + Gets or sets the color of the profile sidebar border. @@ -601,767 +2881,475 @@ The color of the profile sidebar border. - + - The Twitter Search Class + Represents a collection of . + + + + + + The related tweets object. Represents the result from the related_results/show/:id.json endpoint. + + + + + + Gets or sets the results. + + The results. + + + + Gets or sets the type of the result. + + The type of the result. + + + + Gets or sets the name of the group. + + The name of the group. + + + + Gets or sets the score. + + The score. + + + + The delete saved search command class. + Deletes the saved search specified in the ID parameter as the authenticating user. + Returns the deleted saved search in the requested format when successful. - + - Searches Twitter with the the specified query. - - The query. - - A instance. - - - - - Searches Twitter with the the specified query. - - The query. - The options. - - A instance. - - - - - Searches Twitter with the the specified query. + Initializes a new instance of the class. The tokens. - The query. + The savedsearch id. The options. - - A instance. - + - - - Provides optional parameters for user lookup methods. - - - - - Provides a base class for method specific optional parameters, as well as properties for providing configuration settings at run time. - - - - - Initializes a new instance of the class. - - - - - Reads the configuration settings. - - - - - Allows modification of the API endpoint addresses to enable SSL communication. - - The default value can be set at an application level by adding a Twitterizer2.EnableSSL application setting with the value true. - For example: - - - - - - -]]> - - - The current configured value. true if enabled, otherwise false. Default: false - - - Allows configuration of the base address for API method requests for support for 3rd party 'twitter-like' APIs. - - - - - The default value can be set at an application level by adding a Twitterizer2.APIBaseAddress application setting with the base address as the value. - For example: - - - - - - -]]> - - The API end point base address. Default: "http://api.twitter.com/1/" - - - - Allows overriding of the default proxy settings for API call requests. - - The supplied , or null. - - - - - Allows run time enabling of API output caching. - - The default value can be set at an application level by adding a Twitterizer2.EnableCaching application setting with value true. - For example: - - - - - - -]]> - - - The currently configured value. true if enabled, otherwise false. Default: false - - - - - Allows configuration of the sliding expiration timespan for output caching. - - The default value can be set at an application level by adding a Twitterizer2.CacheTimeout application setting with value equal to the number of seconds of the duration. - For example: - - - - - - -]]> - - - The duration that API output should be cached, on a sliding expiration, once enabled. Default: 5 minutes - - - - - Initializes a new instance of the class. - - - - - Gets or sets the screen names. - - The screen names. - - - - Gets or sets the user ids. - - The user ids. - - - - Gets or sets a value indicating whether [include entities]. - - true if [include entities]; otherwise, false. - - - - The timeline options class. Provides optional parameters for timeline methods. - - - - - Initializes a new instance of the class. - - - - - Initializes the specified command. - - - The command. - The options. - - - - Gets or sets the minimum (earliest) status id to request. - - The since id. - - - - Gets or sets the max (latest) status id to request. - - The max id. - - - - Gets or sets the number of messages to request. - - The number of messages to request. - - - - Gets or sets the page number to request. - - The page number. - - - - Gets or sets a value indicating whether user objects should contain only Id values. - - true if user objects should contain only Id values; otherwise, false. - - - - Gets or sets a value indicating whether [include retweets]. - - true if [include retweets]; otherwise, false. - - - - The Saved Searches Command class. Returns the saved searches collection when successful. - - - - - The base command class. - - The business object the command should return. - - - - The ICommand interface. - - The Type of the BaseObject that the command returns - - - + Initializes the command. - + - Executes the command. - - The results of the command. - - - - - Gets the request parameters. - - The request parameters. - - - - Initializes a new instance of the class. - - The method. - The end point. - The tokens. - The optional properties. - - - - Initializes the command. + Returns the members of the specified list. - + - Executes the command. + Initializes a new instance of the class. - The results of the command. - - - - Sets the status code. - - The twitter response. - The status code. - The rate limiting. - - - - Sets the command URI. - - The end point. - - - - Parses the rate limit headers. - - The headers of the web response. - An object that contains the rate-limiting info contained in the response headers - - - - Parses the access level headers. - - The headers of the web response. - An enum of the current access level of the OAuth Token being used. - - - - Adds the result to cache. - - The cache key builder. - The cache. - The result object. - - - - Gets or sets the optional properties. - - The optional properties. - - - - Gets or sets the API method URI. - - The URI for the API method. - - - - Gets or sets the method. - - The method. - - - - Gets or sets the request parameters. - - The request parameters. - - - - Gets or sets the image to upload. - - The image to upload. - - - - Gets or sets the serialization delegate. - - The serialization delegate. - - - - Gets the request tokens. - - The request tokens. - - - - Initializes a new instance of the class. - - The tokens. + The request tokens. The options. - + Initializes the command. - + - Represents a single point on planet earth. + The twitter list collection class. - + - Gets or sets the latitude. + Deserializes the specified value. - The latitude. - - - - Gets or sets the longitude. - - The longitude. - - - - Reads a json array of coordinates and converts it into a collection of coordinate objects. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Reads the json. - - The reader. - Type of the object. - The existing value. - The serializer. - A deserialized - - - - Writes the json. - - The writer. The value. - The serializer. - - - - Twitter Error Details class - - Often, twitter returns error details in the body of response. This class represents the data structure of the error for deserialization. - - - - Gets or sets the request path. - - The request path. - - - - Gets or sets the error message. - - The error message. - - - - The image type that is being uploaded. - - - - - JPEG - - - - - GIF - - - - - PNG - - - - - Represents an image for uploading. Used to upload new profile and background images. - - - - - Gets the image's MIME type. - - + - Reads a file from the disk and returns a instance for uploading. + Gets or sets the next cursor. - The file path. + The next cursor. + + + + Gets or sets the previous cursor. + + The previous cursor. + + + + Gets or sets information about the user's rate usage. + + The rate limiting object. + + + + The Direct Message Entity Class + + + + + Returns a list of the 20 most recent direct messages sent to the authenticating user. + + The tokens. + A instance. + + + + Returns a list of the 20 most recent direct messages sent to the authenticating user. + + The tokens. + The options. + + A instance. + + + + + Returns a list of the 20 most recent direct messages sent by the authenticating user. + + The tokens. + + A instance. + + + + + Sends a new direct message to the specified user from the authenticating user. + + The OAuth tokens. + The user id. + The text of your direct message. + The options. + + A instance. + + + + + Sends a new direct message to the specified user from the authenticating user. + + The OAuth tokens. + The user id. + The text of your direct message. + + A instance. + + + + + Sends a new direct message to the specified user from the authenticating user. + + The OAuth tokens. + The user's screen name. + The message text. + The options. + A object of the created direct message. + + + + Sends a new direct message to the specified user from the authenticating user. + + The OAuth tokens. + The user's screen name. + The message text. + A object of the created direct message. + + + + Returns a list of the 20 most recent direct messages sent by the authenticating user. + + The tokens. + The options. + + A instance. + + + + + Deletes this direct message. + + The tokens. + The options. + + A instance. + + + + + Deletes this direct message. + + The tokens. + The direct message id. + The options. + + A instance. + + + + + Returns a single direct message, specified by an id parameter. Like the /1/direct_messages.format request, this method will include the user objects of the sender and recipient. + + The tokens. + The id. + The options. + - + - Gets or sets the filename. + Gets or sets the direct message id. - The filename. + The direct message id. - + - Gets or sets the data. + Gets or sets the sender id. - The data. + The sender id. - + - Gets or sets the type of the image. + Gets or sets the direct message text. - The type of the image. + The direct message text. - + - The TwitterStatus class represents a twitter status (also refered to as a tweet) and provides methods for interacting with status-centric API methods. - - - - - Returns the status text with HTML links to users, urls, and hashtags. + Gets or sets the recipient id. - + The recipient id. - - - Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. - - The tokens. - The status text. - A object of the newly created status. - - - - Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. - - The tokens. - The status text. - The options. - - A object of the newly created status. - - - - - Deletes the specified status. - - The oauth tokens. - The status id. - The options. - - A object of the deleted status. - - - - - Deletes the specified status. - - The oauth tokens. - The status id. - A object of the deleted status. - - - - Returns a single status, with user information, specified by the id parameter. - - The tokens. - The status id. - The options. - A instance. - - - - Returns a single status, with user information, specified by the id parameter. - - The tokens. - The status id. - A instance. - - - - Returns a single status, with user information, specified by the id parameter. - - The status id. - A instance. - - - - Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) - - The tokens. - The status id. - The options. - A representing the newly created tweet. - - - - Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) - - The tokens. - The status id. - A representing the newly created tweet. - - - - Returns up to 100 of the first retweets of a given tweet. - - The tokens. - The status id. - The options. - - A instance. - - - - - Returns up to 100 of the first retweets of a given tweet. - - The tokens. - The status id. - A instance. - - - - Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) - - The tokens. - The options. - - A representing the newly created tweet. - - - - - Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) - - The tokens. - - A representing the newly created tweet. - - - - - Deletes the status. - - The oauth tokens. - The options. - - A object of the deleted status. - - - - - Deletes the status. - - The oauth tokens. - - A object of the deleted status. - - - - - Shows Related Results of a tweet. Requires the id parameter of the tweet you are getting results for. - - The tokens. - The status id. - The options. - A representing the newly created tweet. - - - - Shows Related Results of a tweet. Requires the id parameter of the tweet you are getting results for. - - The tokens. - The status id. - The options. - A representing the newly created tweet. - - - - Gets or sets the status id. - - The status id. - - - - Gets or sets the string id. - - The string id. - - - - Gets or sets a value indicating whether this status message is truncated. - - - true if this status message is truncated; otherwise, false. - - - + Gets or sets the created date. The created date. - + - Gets or sets the source. + Gets or sets the name of the sender screen. - The source. + The name of the sender screen. - + - Gets or sets the screenName the status is in reply to. + Gets or sets the name of the recipient screen. - The screenName. + The name of the recipient screen. - + - Gets or sets the user id the status is in reply to. + Gets or sets the sender. - The user id. + The sender. - + - Gets or sets the status id the status is in reply to. + Gets or sets the recipient. - The status id. + The recipient. - - - Gets or sets a value indicating whether the authenticated user has favorited this status. - - - true if this instance is favorited; otherwise, false. - - - - - Gets or sets the text of the status. - - The status text. - - - - Gets or sets the user. - - The user that posted this status. - - - - Gets or sets the retweeted status. - - The retweeted status. - - - - Gets or sets the place. - - The place. - - - - Gets or sets the geo location data. - - The geo location data. - - + Gets or sets the entities. The entities. - + - Gets or sets the retweet count string. + Provides methods for interacting with user blocks. - The retweet count. - + - Gets the retweet count. + Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - The retweet count. + The tokens. + The user id. + The options. + + The blocked user in the requested format when successful. + - + - Gets a value indicating that the number of retweets exceeds the reported value in RetweetCount. For example, "more than 100" + Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - The retweet count plus indicator. + The tokens. + The user id. + + The blocked user in the requested format when successful. + - + - Gets or sets a value indicating whether this is retweeted. + Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - true if retweeted; otherwise, false. + The tokens. + The user's screen name. + The options. + + The blocked user in the requested format when successful. + + + + + Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. + + The tokens. + The user's screen name. + + The blocked user in the requested format when successful. + + + + + Unblocks the user specified as the authenticating user. + + The tokens. + The user id. + The options. + + The unblocked user in the requested format when successful. + + + + + Unblocks the user specified as the authenticating user. + + The tokens. + The user id. + + The unblocked user in the requested format when successful. + + + + + Unblocks the user specified as the authenticating user. + + The tokens. + The user's screen name. + The options. + + The unblocked user in the requested format when successful. + + + + + Unblocks the user specified as the authenticating user. + + The tokens. + The user's screen name. + + The unblocked user in the requested format when successful. + + + + + Checks for a block against the the user specified as the authenticating user. + + The tokens. + The user id. + The options. + + The blocked user in the requested format when successful. + + + + + Checks for a block against the the user specified as the authenticating user. + + The tokens. + The user id. + + The blocked user in the requested format when successful. + + + + + Checks for a block against the the user specified as the authenticating user. + + The tokens. + The user's screen name. + The options. + + The blocked user in the requested format when successful. + + + + + Checks for a block against the the user specified as the authenticating user. + + The tokens. + The user's screen name. + + The blocked user in the requested format when successful. + + + + + Returns a collection of user objects that the authenticating user is blocking. + + The tokens. + The options. + + + + + Returns a collection of user objects that the authenticating user is blocking. + + The tokens. + + + + + + Returns an collection of user ids the authenticating user is blocking. + + The tokens. + The options. + A collection of user ids. + + + + Returns an collection of user ids the authenticating user is blocking. + + The tokens. + A collection of user ids. + + + + The TwitterUserCollection class. + + + + + Deserializes the specified value. + + The value. + + + + + Gets or sets the next cursor. + + The next cursor. + + + + Gets or sets the previous cursor. + + The previous cursor. + + + + Gets or sets information about the user's rate usage. + + The rate limiting object. @@ -1399,899 +3387,29 @@ The verification string. - + - The namespace contains abstract classes and interfaces - - - - - The base class for object collections. - - The type of object stored in the collection. - - - - Gets or sets the annotations. - - The annotations. - - - - The Lookup Users command class. + The friends options class. Provides a payload for optional parameters of the class. - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - The Show Status Command - - - - - Initializes a new instance of the class. - - The request tokens. - The status id. - The options. - - - - Inits this instance. - - - - - The Mentions Command class - - - - - The Paged Timeline Command class. Provides common functionality for all of the paged timeline command classes. - - - - - - Initializes a new instance of the class. - - The HTTP method. - The end point. - The tokens. - The optional properties. - - - - Initializes the command. - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Inits this instance. - - - - - The current trends options class. Provides a payload for optional parameters for the CurrentTrendsCommand class. - - - - - Gets or sets a value indicating whether [exclude hash tags]. - - true if [exclude hash tags]; otherwise, false. - - - - The create list command class - - - - - Initializes a new instance of the class. - - The request tokens. - The name of the list. - The username. - The options. - - - - Initializes the command. - - - - - Gets or sets the name of the list. - - The name of the list. - - - - Gets or sets a value indicating whether this instance is public. - - true if this instance is public; otherwise, false. - - - - Gets or sets the description. - - The description. - - - - Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list. - - - - - Initializes a new instance of the class. - - The request tokens. - The owner username. - The list id. - The user id. - The options. - - - - Initializes the command. - - - + Gets or sets the user id. The user id. - + - The delete favoriate command class. - Un-favorites the status specified in the ID parameter as the authenticating user. - Returns the un-favorited status in the requested format when successful. + Gets or sets the user's screen name. + The screen name of the user. - - - Initializes a new instance of the class. - - The tokens. - The status id. - The options. - - - - Initializes the command. - - - - - The Create Favorite Command class. Favorites the status specified in the ID parameter as the authenticating user. Returns the favorite status when successful. - - - - - Initializes a new instance of the class. - - The tokens. - The status id. - The options. - - - - Initializes the command. - - - - - The followers options class. Provides a payload for optional parameters of the FollowersCommand class. - - - - - Gets or sets the ID of the user for whom to request a list of followers. - - The user id. - - - - Gets or sets the screen name of the user for whom to request a list of followers. - - The name of the screen. - - + Gets or sets the cursor. The cursor. - - - The Create Friendship Options class - - - - - Initializes a new instance of the class. - - - - - Gets or sets a value indicating whether to enable delivery of statuses from this user to the authenticated user's device - - true if follow; otherwise, false. - - - - The TwitterUserCollection class. - - - - - Deserializes the specified value. - - The value. - - - - - Gets or sets the next cursor. - - The next cursor. - - - - Gets or sets the previous cursor. - - The previous cursor. - - - - Gets or sets information about the user's rate usage. - - The rate limiting object. - - - - The TwitterStatusCollection class. - - - - - Gets or sets the current page number. - - The current page number. - - - - Describes the result status of a request - - - - - The request was completed successfully - - - - - The URI requested is invalid or the resource requested, such as a user, does not exists. - - - - - The request was invalid. An accompanying error message will explain why. - - - - - Authentication credentials were missing or incorrect. - - - - - Returned by the Search API when an invalid format is specified in the request. - - - - - The authorized user, or client IP address, is being rate limited. - - - - - Twitter is currently down. - - - - - Twitter is online, but is overloaded. Try again later. - - - - - The request failed due to a connection issue or timeout. - - - - - Something unexpected happened. See the error message for additional information. - - - - - The command to obtain followers of a user. - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - The show friendship command class. - - - - - The base address to the API method. - - - - - Initializes a new instance of the class. - - The tokens. - The source user id. - Name of the source user. - The target user id. - Name of the target screen. - The optional properties. - - - - Initializes the command. - - - - - Gets or sets the id of the source user. - - The source id. - - - - Gets or sets the screenname of the source user. - - The screenname of the source user. - - - - Gets or sets the id of the target user. - - The target id. - - - - Gets or sets the screenname of the target user. - - The screenname of the target user. - - - - The retweet command class. - - - - - The base address to the API method. - - - - - Initializes a new instance of the class. - - The request tokens. - The status id. - The options. - - - - Initializes the command. - - - - - The related tweets object. Represents the result from the related_results/show/:id.json endpoint. - - - - - - Gets or sets the results. - - The results. - - - - Gets or sets the type of the result. - - The type of the result. - - - - Gets or sets the name of the group. - - The name of the group. - - - - Gets or sets the score. - - The score. - - - - Represents mention of a user within a value. - - - - - The base class for twitter entities that describe tweet text. - - - - - Initializes a new instance of the class. - - - - - Gets or sets the start index. - - The start index. - - - - Gets or sets the end index. - - The end index. - - - - Initializes a new instance of the class. - - - - - Gets or sets the user's screen name. - - The user's screen name. - - - - Gets or sets the user's name. - - The user's name. - - - - Gets or sets the user id. - - The user id. - - - - The create list command class - - - - - Initializes a new instance of the class. - - The options. - - - - Initializes the command. - - - - - The create list command class - - - - - Initializes a new instance of the class. - - The request tokens. - The username. - The list id or slug. - The options. - - - - Initializes the command. - - - - - Lists the possible types of geographic boundaries. - - - - - A single point. Expect one coordinate. - - - - - A line, or multiple lines joined end-to-end. - - - - - A polygon-shaped area. - - - - - A circle represented by a single point (the center) and the radius. - - - - - Represents a geological area - - - - - Gets or sets the type of the shape. - - The type of the shape. - - - - Gets or sets the coordinates. - - The coordinates. - - - - Creates a friendship between the authenticated user and another user - - - - - The base address to the API method. - - - - - Initializes a new instance of the class. - - The request tokens. - The userid. - The optional properties. - - - - Initializes a new instance of the class. - - The request tokens. - Name of the user. - The optional properties. - - - - Initializes the command. - - - - - Gets or sets the user id. - - The user id. - - - - Gets or sets the username. - - The username. - - - - The twitter list collection class. - - - - - Holds a collection of ID values - - - - - Annotations are additional pieces of data, supplied by Twitter clients, in a non-structured dictionary. - - The annotations. - - - - Deserializes the specified value. - - The value. - - - - - Gets or sets the next cursor. - - The next cursor. - - - - Gets or sets the previous cursor. - - The previous cursor. - - - - Gets or sets information about the user's rate usage. - - The rate limiting object. - - - - The TwitterFavorite class. Provides static methods for manipulating favorite tweets. - - - - - Prevents a default instance of the TwitterFavorite class from being created. - - - - - Favorites the status specified in the ID parameter as the authenticating user. - - The tokens. - The status id. - The options. - The favorite status when successful. - - - - Favorites the status specified in the ID parameter as the authenticating user. - - The tokens. - The status id. - The favorite status when successful. - - - - Un-favorites the status specified in the ID parameter as the authenticating user. - - The tokens. - The status id. - The options. - The un-favorited status in the requested format when successful. - - - - Un-favorites the status specified in the ID parameter as the authenticating user. - - The tokens. - The status id. - - The un-favorited status in the requested format when successful. - - - - - Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - - The tokens. - The options. - The 20 most recent favorite statuses - - - - Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - - The tokens. - The 20 most recent favorite statuses - - - - Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - - The options. - The 20 most recent favorite statuses - - - - The Direct Message Collection class - - - - Contains security tokens nessisary for performing authorized actions against the Twitter API - To perform authorized actions, you must create a new OAuthTokens variable and supply values for the , , , and properties, as follows: - - OAuthTokens tokens = new OAuthTokens(); - tokens.AccessToken = "XXX"; - tokens.AccessTokenSecret = "XXX"; - tokens.ConsumerKey = "XXX"; - tokens.ConsumerSecret = "XXX"; - - - Dim tokens As new OAuthTokens(); - tokens.AccessToken = "XXX" - tokens.AccessTokenSecret = "XXX" - tokens.ConsumerKey = "XXX" - tokens.ConsumerSecret = "XXX" - - - - - - Gets or sets the access token. - - The access token. - - - - Gets or sets the access token secret. - - The access token secret. - - - - Gets or sets the consumer key. - - The consumer key. - - - - Gets or sets the consumer secret. - - The consumer secret. - - - - Gets a value indicating whether this instance has consumer token values. - - - true if this instance has consumer token; otherwise, false. - - - - - Gets a value indicating whether this instance has access token values. - - - true if this instance has access token; otherwise, false. - - - - - Gets a value indicating whether this instance has values. This does not verify that the values are correct. - - - true if this instance has values; otherwise, false. - - - - - The Show User Command - - http://dev.twitter.com/doc/get/users/show - - - - Initializes a new instance of the class. - - The request tokens. - The user id. - The username. - The options. - - - - Inits this instance. - - - - - Gets or sets the user ID. - - The user ID. - - - - Gets or sets the name of the user. - - The name of the user. - - - - The IPagedCommand interface. - - The type of BaseObject that the command returns. - - - - Initializes a new instance of the class. - - The HTTP method. - The end point. - The tokens. - The optional properties. - - - - Gets or sets the page number to obtain. - - The page number. - - - - The create list command class - - - - - Initializes a new instance of the class. - - The request tokens. - The slug. - The list id. - The options. - - - - - - Initializes the command. - - - - - Gets or sets the list id. - - The list id. - - - - Gets or sets the slug. - - The slug. - The command class to delete a status update. @@ -2316,220 +3434,146 @@ The status id. - + - Initializes a new instance of the class. + The UpdateListOptions class. Provides a payload for optional parameters for the UpdaetListCommand class. - The tokens. + + + + Gets or sets the name of the list. + + The name of the list. + + + + Gets or sets a value indicating whether this instance is public. + + true if this instance is public; otherwise, false. + + + + Gets or sets the description. + + The description. + + + + The optional parameters for the class + + + + + Gets or sets the cursor. + + The cursor. + + + + Add a member to a list. The authenticated user must own the list to be able to add members to it. Lists are limited to having 500 members. + + + + + Initializes a new instance of the class. + + The request tokens. + The owner username. + The list id. The user id. - Name of the screen. The options. - + - Inits this instance. + Initializes the command. - + Gets or sets the user id. The user id. - + + + The create block command class. + + http://dev.twitter.com/doc/post/blocks/create + + + + Initializes a new instance of the class. + + The tokens. + Name of the screen. + The user id. + The options. + + + + Inits this instance. + + + Gets or sets the name of the screen. The name of the screen. - + - The TwitterSavedSearch class. Provides static methods for manipulating saved searches tweets. + Gets or sets the user id. + + The user id. + + + + Describes the access level of the OAuth Token - + - Creates the saved search specified in the query parameter as the authenticating user. + The request may not be authenticated or the Access Level header was missing from the response. + + + + + The OAuth token has read access levels only. + + + + + The OAuth token has read write access only. + + + + + The OAuth token has read write and direct messages access. + + + + + There was no OAuth token access level available for reading in the response headers. + + + + + The update list command class + + + + + Initializes a new instance of the class. The tokens. - The query. + The id. The options. - The saved search when successful. + - + - Creates the saved search specified in the query parameter as the authenticating user. + Initializes the command. - The tokens. - The query. - The saved search when successful. - - - - Deletes the saved search specified in the ID parameter as the authenticating user. - - The tokens. - The saved search id. - The options. - The deleted saved search in the requested format when successful. - - - - Deletes the saved search specified in the ID parameter as the authenticating user. - - The tokens. - The saved search id. - - The deleted saved search in the requested format when successful - - - - - Returns the the authenticating user's saved search queries in the requested format. - - The tokens. - The options. - The saved searches - - - - Returns the the authenticating user's saved search queries in the requested format. - - The tokens. - The saved searches - - - - Returns the the authenticating user's saved search queries in the requested format. - - The options. - The saved searches - - - - Gets or sets the Id. - - The Id of the saved search. - - - - Gets or sets the name. - - The name of the saved search. - - - - Gets or sets the query. - - The query. - - - - Gets or sets the position. - - The position. - - - - Gets or sets the created at date time. - - The created at. - - - - Converts date strings returned by the Twitter API into - - - - - The date pattern for most dates returned by the API - - - - - Reads the json. - - The reader. - Type of the object. - The existing value. - The serializer. - The parsed value as a DateTime, or null. - - - - Writes the json. - - The writer. - The value. - The serializer. - - - - The Twitter Relationship entity class - - - - - The relationship source - - - - - The relationship target - - - - - Allows the authenticating users to unfollow the user specified. - - The tokens. - - Returns the unfollowed user in the requested format when successful. Returns a string describing the failure condition when unsuccessful. - - - - - Gets or sets the source. - - The source. - - - - Gets or sets the target. - - The target. - - - - Gets or sets the relationship. - - The relationship. - - - - Performs the action. - - The command. - The parsed result of the action. - - - - - - The user search options class. Provides a payload for optional parameters of the UserSearchCommand class. - - - - - Gets or sets the number per page. Cannot be greater than 20. - - The number per page. - - - - Gets or sets the page of results to retrieve. - - The page of results to retrieve. @@ -2549,79 +3593,213 @@ Initializes the command. - + - The Home Timeline Command + The command to obtain followers of a user. - + - Initializes a new instance of the class. + Initializes a new instance of the class. The request tokens. - The optional properties. - - - - Inits this instance. - - - - - The delete saved search command class. - Deletes the saved search specified in the ID parameter as the authenticating user. - Returns the deleted saved search in the requested format when successful. - - - - - Initializes a new instance of the class. - - The tokens. - The saved search id. The options. - + Initializes the command. - + - The Twitter Place Collection class. A collection of objects. + Represents mention of a user within a value. - + - Converts json data to a . + Initializes a new instance of the class. - + - Determines whether this instance can convert the specified object type. + Gets or sets the user's screen name. - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - + The user's screen name. - + - Reads the JSON representation of the object. + Gets or sets the user's name. - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. + The user's name. - + - Writes the JSON representation of the object. + Gets or sets the user id. - The to write to. - The value. - The calling serializer. + The user id. + + + + The current trends options class. Provides a payload for optional parameters for the CurrentTrendsCommand class. + + + + + Gets or sets a value indicating whether [exclude hash tags]. + + true if [exclude hash tags]; otherwise, false. + + + + The available search result type filter options. + + + + + Use Twitter's default + + + + + Include both popular and real time results in the response. + + + + + Return only the most recent results in the response. + + + + + Return only the most popular results in the response. + + + + + The search options class. Provides a payload for optional parameters for the SearchCommand class. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the language. + + The language. + + + + Gets or sets the locale. + + The locale. + + + + Gets or sets the max id. + + The max id. + + + + Gets or sets the number per page. + + The number per page. + + + + Gets or sets the page number. + + The page number. + + + + Gets or sets the since date. + + The since date. + + + + Gets or sets the since id. + + The since id. + + + + Gets or sets the geo code string. + The parameter value is specified by "latitude,longitude,radius", where radius units must be specified as either "mi" (miles) or "km" (kilometers). Note that you cannot use the near operator via the API to geocode arbitrary locations; however you can use this geocode parameter to search near geocodes directly. + + The geo code. + + + + Gets or sets a value indicating whether to prefix the user name to the tweet. + + + true to prefix the user name to the tweet; otherwise, false. + + + + + Gets or sets the until date. + + The until date. + + + + Gets or sets the type of the result. + + The type of the result. + + + + Gets or sets whether to use Twitter.com user ids in the result. + + The type of the result. + + + + Gets or sets whether to include some entities in the result. + + The type of the result. + + + + The delete friendship command class. + + + + + The base address to the API method. + + + + + Initializes a new instance of the class. + + The request tokens. + The user id. + The user name. + The optional properties. + + + + Initializes the command. + + + + + Gets or sets the user id. + + The user id. + + + + Gets or sets the username. + + The username. @@ -2931,170 +4109,6 @@ The tokens. - - - The Direct Message Entity Class - - - - - Returns a list of the 20 most recent direct messages sent to the authenticating user. - - The tokens. - A instance. - - - - Returns a list of the 20 most recent direct messages sent to the authenticating user. - - The tokens. - The options. - - A instance. - - - - - Returns a list of the 20 most recent direct messages sent by the authenticating user. - - The tokens. - - A instance. - - - - - Sends a new direct message to the specified user from the authenticating user. - - The OAuth tokens. - The user id. - The text of your direct message. - The options. - - A instance. - - - - - Sends a new direct message to the specified user from the authenticating user. - - The OAuth tokens. - The user id. - The text of your direct message. - - A instance. - - - - - Sends a new direct message to the specified user from the authenticating user. - - The OAuth tokens. - The user's screen name. - The message text. - The options. - A object of the created direct message. - - - - Sends a new direct message to the specified user from the authenticating user. - - The OAuth tokens. - The user's screen name. - The message text. - A object of the created direct message. - - - - Returns a list of the 20 most recent direct messages sent by the authenticating user. - - The tokens. - The options. - - A instance. - - - - - Deletes this direct message. - - The tokens. - The options. - - A instance. - - - - - Deletes this direct message. - - The tokens. - The direct message id. - The options. - - A instance. - - - - - Gets or sets the direct message id. - - The direct message id. - - - - Gets or sets the sender id. - - The sender id. - - - - Gets or sets the direct message text. - - The direct message text. - - - - Gets or sets the recipient id. - - The recipient id. - - - - Gets or sets the created date. - - The created date. - - - - Gets or sets the name of the sender screen. - - The name of the sender screen. - - - - Gets or sets the name of the recipient screen. - - The name of the recipient screen. - - - - Gets or sets the sender. - - The sender. - - - - Gets or sets the recipient. - - The recipient. - - - - Gets or sets the entities. - - The entities. - The direct messages sent options class. Provides a payload for the command. @@ -3135,72 +4149,1231 @@ Boolean. - + - The Twitterizer Exception - - - - - - Initializes a new instance of the class. + Initializes a new instance of the class. - + - Initializes a new instance of the class. + Gets or sets a value indicating whether or not to tile the background image. - The message. + true if tiled; otherwise, false. - + - Initializes a new instance of the class. + Gets or sets a value indicating whether to display the profile background image or not. - The message. - The inner exception. + true to use an image; otherwise, false. - + - Parses the rate limit headers. + The TwitterTrend class. - The response. - + - Gets or sets the result. + Gets the trends with the specified WOEID. + + The WOEID. + The options. + + A collection of objects. + + + + + Gets the current trends. + + The WOEID. + + A collection of objects. + + + + + Gets or sets the name. + + The name of the trend. + + + + Gets or sets the address. + + The address. + + + + Gets or sets the search query. + + The search query. + + + + Gets or sets the promoted content value. + + Promoted Content. + + + + Gets or sets the events. + + The events. + + + + Performs the action. + + The command. + The parsed result of the action. + + + + + + The Home Timeline Command + + + + + Initializes a new instance of the class. + + The request tokens. + The optional properties. + + + + Inits this instance. + + + + + The Retweets Options class. Provides a payload for optional parameters for the Retweets Command + + + + + Gets or sets the count of statuses to return. + + The number of statuses to return. + + + + The optional parameters for the class. + + + + + Specifies the number of records to retrieve. Must be less than or equal to 100. + + The count. + + + + Specifies the page of results to retrieve. + + The page. + + + + When set to true each tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object. + + true if [trim user]; otherwise, false. + + + + Gets or sets a value indicating whether entities should be included in the results. + + true if entities should be included; otherwise, false. + + + + The create list command class + + + + + Initializes a new instance of the class. + + The request tokens. + The query. + The options. + + + + Initializes the command. + + + + + Gets or sets the query. + + The query. + + + + The create list command class + + + + + Initializes a new instance of the class. + + The WOEID. + The options. + + + + Initializes the command. + + + + + The Twitter Place Collection class. A collection of objects. + + + + + Converts json data to a . + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + The Direct Messages Sent Command class + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + The destroy block command class. + + http://dev.twitter.com/doc/post/blocks/destroy + + + + Initializes a new instance of the class. + + The tokens. + Name of the screen. + The user id. + The options. + + + + Inits this instance. + + + + + Gets or sets the name of the screen. + + The name of the screen. + + + + Gets or sets the user id. + + The user id. + + + + + + + + + Initializes a new instance of the class. + + The tokens. + The image. + The options. + + + + Inits this instance. + + + + + The TwitterStatusCollection class. + + + + + Gets or sets the current page number. + + The current page number. + + + + Provides data about the user's current rate limiting. + + + + + Gets the remaining number of requests until requests are denied. + + The remaining requests. + + + + Gets the total number of requests allowed before requests are denied. + + The total number of requests. + + + + Gets the date the remaining number of requests will be reset. + + The reset date. + + + + The retweets command class. + + + + + Initializes a new instance of the class. + + The request tokens. + The status id. + The options. + + + + Initializes the command. + + + + + Gets or sets the status id. + + The status id. + + + + The retweeted by command class. + + http://dev.twitter.com/doc/get/statuses/:id/retweeted_by + + + + Inits this instance. + + + + + Provides a payload for optional parameters for the method. + + + + + A hint on the "region" in which to search. If a number, then this is a radius in meters, but it can also take a string that is suffixed with ft to specify feet. If this is not passed in, then it is assumed to be 0m. If coming from a device, in practice, this value is whatever accuracy the device has measuring its location (whether it be coming from a GPS, WiFi triangulation, etc.). + + + + + The minimal granularity of data to return. If this is not passed in, then neighborhood is assumed. city can also be passed. + + + + + A hint as to the number of results to return. This does not guarantee that the number of results returned will equal max_results, but instead informs how many "nearby" results to return. Ideally, only pass in the number of places you intend to display to the user here. + + + + + Twitter Error Details class + + Often, twitter returns error details in the body of response. This class represents the data structure of the error for deserialization. + + + + Gets or sets the request path. + + The request path. + + + + Gets or sets the error message. + + The error message. + + + + The image type that is being uploaded. + + + + + JPEG + + + + + GIF + + + + + PNG + + + + + Represents an image for uploading. Used to upload new profile and background images. + + + + + Gets the image's MIME type. + + + + + + Reads a file from the disk and returns a instance for uploading. + + The file path. + + + + + Gets or sets the filename. + + The filename. + + + + Gets or sets the data. + + The data. + + + + Gets or sets the type of the image. + + The type of the image. + + + + Describes the result status of a request + + + + + The request was completed successfully + + + + + The URI requested is invalid or the resource requested, such as a user, does not exists. + + + + + The request was invalid. An accompanying error message will explain why. + + + + + Authentication credentials were missing or incorrect. + + + + + Returned by the Search API when an invalid format is specified in the request. + + + + + The authorized user, or client IP address, is being rate limited. + + + + + Twitter is currently down. + + + + + Twitter is online, but is overloaded. Try again later. + + + + + The request failed due to a connection issue or timeout. + + + + + Something unexpected happened. See the error message for additional information. + + + + + Failed to authenticate with the proxy. + + + + + The Twitter Search Result class. + + + + + Gets or sets the profile image URL. + + The profile image URL. + + + + Gets or sets the created date. + + The created date. + + + + Gets or sets the name of from user screen. + + The name of from user screen. + + + + Gets or sets from user id. + + From user id. + + + + Gets or sets the name of to user screen. + + The name of to user screen. + + + + Gets or sets to user id. + + To user id. + + + + Gets or sets the status text. + + The status text. + + + + Gets or sets the status id. + + The status id. + + + + Gets or sets the source. + + The source. + + + + Gets or sets the language. + + The language. + + + + Gets or sets the geo location associated with the result. + + The geo location data. + + + + Gets or sets the location. + + The location. + + + + Gets or sets the entities. + + The entities. + + + + The Twitter Result Type Enumeration + + + + + In a future release this will become the default value. Include both popular and real time results in the response. + + + + + The current default value. Return only the most recent results in the response. + + + + + Return only the most popular results in the response. + + + + + The namespace contains abstract classes and interfaces + + + + + The suggested users categories command + + http://dev.twitter.com/doc/get/users/suggestions + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Inits this instance. + + + + + The show friendship command class. + + + + + The base address to the API method. + + + + + Initializes a new instance of the class. + + The tokens. + The source user id. + Name of the source user. + The target user id. + Name of the target screen. + The optional properties. + + + + Initializes the command. + + + + + Gets or sets the id of the source user. + + The source id. + + + + Gets or sets the screenname of the source user. + + The screenname of the source user. + + + + Gets or sets the id of the target user. + + The target id. + + + + Gets or sets the screenname of the target user. + + The screenname of the target user. + + + + The Retweeted By Me Command. + + + + + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. + + + + + Check if a user is a member of the specified list. + + + + + Initializes a new instance of the class. + + The request tokens. + The owner username. + The list id. + The user id. + The options. + + + + Initializes the command. + + + + + The Create Friendship Options class + + + + + Gets or sets the cursor. + + The cursor. + + + + Gets or sets the ID of the user for whom to request a list of followers. + + The user id. + + + + Gets or sets the screen name of the user for whom to request a list of followers. + + The name of the screen. + + + + Indicates that a command class requires authorization tokens. + + + + + Initializes a new instance of the class. + + + + + The Twitter Relationship entity class + + + + + The relationship source + + + + + The relationship target + + + + + Allows the authenticating users to unfollow the user specified. + + The tokens. + + Returns the unfollowed user in the requested format when successful. Returns a string describing the failure condition when unsuccessful. + + + + + Gets or sets the source. + + The source. + + + + Gets or sets the target. + + The target. + + + + Gets or sets the relationship. + + The relationship. + + + + Enumeration of the supported HTTP verbs supported by the + + + + + The HTTP GET method is used to retrieve data. + + + + + The HTTP POST method is used to transmit data. + + + + + The HTTP DELETE method is used to indicate that a resource should be deleted. + + + + + The Web Request Builder class. + + + + + Holds file data form performing multipart form posts. + + + + + The HTTP Authorization realm. + + + + + OAuth Parameters key names to include in the Authorization header. + + + + + Parameters that may appear in the list, but should never be included in the header or the request. + + + + + Initializes a new instance of the class. + + The request URI. + The http verb. + if set to true the will be instructed to keep the connection alive. + The http user agent. + The network credentials. + + + + + Initializes a new instance of the class. + + The request URI. + The verb. + The tokens. + if set to true the http request is instructed to keep the connection alive. + The user agent. + + + + Executes the request. + + + + + + Prepares the request. It is not nessisary to call this method unless additional configuration is required. + + A object fully configured and ready for execution. + + + + Adds the parameters to request uri. + + + + + Sets up the OAuth request details. + + + + + Generates the signature. + + + + + + Generate the timestamp for the signature + + A timestamp value in a string. + + + + Generate a nonce + + A random number between 123400 and 9999999 in a string. + + + + Normalizes the URL. + + The URL to normalize. + The normalized url string. + + + + Encodes a value for inclusion in a URL querystring. + + The value to Url encode + Returns a Url encoded string + + + + Encodes a series of key/value pairs for inclusion in a URL querystring. + + The parameters. + A string of all the keys and value pairs with the values encoded. + + + + Generates the authorization header. + + The string value of the HTTP header to be included for OAuth requests. + + + + Gets or sets the request URI. + + The request URI. + + + + Gets or sets the parameters. + + The parameters. + + + + Gets or sets the verb. + + The verb. + + + + Gets or sets the oauth tokens. + + The tokens. + + + + Gets or sets the UserAgent. + + The User Agent. + + + + Gets or sets the Basic Auth Credentials. + + The Basic Auth Credentials. + + + + Gets or sets the Multipart config + + Multipart + + + + Gets or sets the proxy. + + The proxy. + + + + Gets or sets a value indicating whether the request will be signed with an OAuth authorization header. + + true if [use O auth]; otherwise, false. + + + + Represents a suggested user category + + + + + Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in the users/suggestions/category endpoint to get the users in that category. + + The tokens. + The options. + A collection of categories without user data. + + + + Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in the users/suggestions/category endpoint to get the users in that category. + + The tokens. + + A collection of categories without user data. + + + + + Access the users in a given category of the Twitter suggested user list. + + The tokens. + The category slug. + The options. + + It is recommended that end clients cache this data for no more than one hour. + + + + Access the users in a given category of the Twitter suggested user list. + + The tokens. + The category slug. + + It is recommended that end clients cache this data for no more than one hour. + + + + Gets or sets the name. + + The name. + + + + Gets or sets the slug. + + The slug. + + + + Gets or sets the number of users. + Only available in list of categories. + + The number of users. + + + + Gets or sets the users. + Users are only returned for a single category. + + The users. + + + + Represents a suggested category + + + + + The UserTimelineOptions class. Provides a payload for optional parameters of the class. + + + + + Gets or sets the ID of the user for whom to request a list of followers. + + The user id. + + + + Gets or sets the screen name of the user for whom to request a list of followers. + + The name of the screen. + + + + The create list command class + + + + + Initializes a new instance of the class. + + The request tokens. + The name. + The options. + + + + + Initializes the command. + + + + + Gets or sets the name of the list. + + The name of the list. + + + + Gets or sets a value indicating whether this instance is public. + + true if this instance is public; otherwise, false. + + + + Gets or sets the description. + + The description. + + + + Initializes a new instance of the class. + + The tokens. + The list id. + The options. + + + + Inits this instance. + + + + + The twitter response class provides details of the response from an api call to the twitter api. + + + + + + Gets or sets the object that represents the data returned by the request to Twitter. + + The response object. + + + + Gets or sets the result of the request. The result. - + - Gets or sets the response body. + Gets or sets the request URL. + + The request URL. + + + + Gets the raw json or xml response provided by Twitter. The response body. - + - Gets or sets the rate limits. + Gets or sets the error message returned by the Twitter. - The rate limits. + The error message. - + - Gets or sets the error details. + Gets or sets the oauth tokens provided for the request. - The error details. + The tokens. - + - Gets the response that the remote host returned. + Gets or sets a value indicating whether the response was retrieved from a cache. - - If a response is available from the Internet resource, a instance that contains the error response from an Internet resource; otherwise, null. + true if [response cached]; otherwise, false. - + - Gets the bug report. + Gets or sets the rate limiting details. - The bug report. + The rate limiting object. + + + + Gets or sets the OAuth Token Access Level details. + + The access level. + + + + The Twitter Search Result Collection class + + + + + Deserializes the specified value. + + The value. + + + + + The Twitter Search Class + + + + + Searches Twitter with the the specified query. + + The query. + + A instance. + + + + + Searches Twitter with the the specified query. + + The query. + The options. + + A instance. + + + + + Searches Twitter with the the specified query. + + The tokens. + The query. + The options. + + A instance. + @@ -3240,6 +5413,7 @@ if set to true creates a public list. The description. A instance. + @@ -3256,21 +5430,10 @@ Updates the specified list. The oauth tokens. - The username. The list id. The options. A instance. - - - - List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user who's lists are being returned. - - The tokens. - The username. - The options. - - A instance. - + @@ -3282,39 +5445,6 @@ A instance. - - - List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user who's lists are being returned. - - The tokens. - The username. - - A instance. - - - - - Show the specified list. Private lists will only be shown if the authenticated user owns the specified list. - - The tokens. - The username. - The list id or slug. - The options. - - A instance. - - - - - Show the specified list. Private lists will only be shown if the authenticated user owns the specified list. - - The tokens. - The username. - The list id or slug. - - A instance. - - Returns the specified list. Private lists will only be shown if the authenticated user owns the specified list. @@ -3431,10 +5561,9 @@ The tokens. The username. - The list id. - - A collection of users as . - + The list id or slug. + A collection of users as . + @@ -3528,6 +5657,16 @@ The optional properties. + + + Unsubscribes the authenticated user from the specified list. + + The tokens. + The list id. + The optional properties. + + + Gets or sets the id. @@ -3594,188 +5733,6 @@ true if this instance is public; otherwise, false. - - - Enumeration of the supported HTTP verbs supported by the - - - - - The HTTP GET method is used to retrieve data. - - - - - The HTTP POST method is used to transmit data. - - - - - The HTTP DELETE method is used to indicate that a resource should be deleted. - - - - - The Web Request Builder class. - - - - - The HTTP Authorization realm. - - - - - OAuth Parameters key names to include in the Authorization header. - - - - - Parameters that may appear in the list, but should never be included in the header or the request. - - - - - Initializes a new instance of the class. - - The request URI. - The verb. - - - - Initializes a new instance of the class. - - The request URI. - The verb. - The tokens. - - - - Executes the request. - - - - - - Prepares the request. It is not nessisary to call this method unless additional configuration is required. - - A object fully configured and ready for execution. - - - - Adds the parameters to request uri. - - - - - Adds the form field values to request. - - The request. - - - - Sets up the OAuth request details. - - - - - Generates the signature. - - - - - - Generate the timestamp for the signature - - A timestamp value in a string. - - - - Generate a nonce - - A random number between 123400 and 9999999 in a string. - - - - Normalizes the URL. - - The URL to normalize. - The normalized url string. - - - - Encodes a value for inclusion in a URL querystring. - - The value to Url encode - Returns a Url encoded string - - - - Encodes a series of key/value pairs for inclusion in a URL querystring. - - The parameters. - A string of all the keys and value pairs with the values encoded. - - - - Generates the authorization header. - - The string value of the HTTP header to be included for OAuth requests. - - - - Gets or sets the request URI. - - The request URI. - - - - Gets or sets the parameters. - - The parameters. - - - - Gets or sets the verb. - - The verb. - - - - Gets or sets the oauth tokens. - - The tokens. - - - - Gets or sets the keep alive header on PrepareRequest. - - Keep Alive. - - - - Gets or sets the UserAgent. - - The User Agent. - - - - Gets or sets the Basic Auth Credentials. - - The Basic Auth Credentials. - - - - Gets or sets the proxy. - - The proxy. - - - - Gets or sets a value indicating whether the request will be signed with an OAuth authorization header. - - true if [use O auth]; otherwise, false. - A utility for handling authorization and request signatures for the OAuth protocol. Before you begin, you will need to register your application with Twitter. @@ -3790,9 +5747,10 @@ string consumerKey = "XXX"; string consumerSecret = "XXX"; + string callbackUrl = "http://example.com/callback.aspx"; // Obtain a request token - OAuthTokenResponse requestToken = OAuthUtility.GetRequestToken(consumerKey, consumerSecret); + OAuthTokenResponse requestToken = OAuthUtility.GetRequestToken(consumerKey, consumerSecret, callbackUrl); // Direct or instruct the user to the following address: Uri authorizationUri = OAuthUtility.BuildAuthorizationUri(requestToken.Token); @@ -3800,9 +5758,10 @@ Dim consumerKey As String = "XXX" Dim consumerSecret As String = "XXX" + Dim callbackUrl As String = "http://example.com/callback.aspx" '-- Obtain a request token - Dim requestToken As OAuthTokenResponse = OAuthUtility.GetRequestToken(consumerKey, consumerSecret) + Dim requestToken As OAuthTokenResponse = OAuthUtility.GetRequestToken(consumerKey, consumerSecret, callbackUrl) '-- Direct or instruct the user to the following address: Dim authorizationUri As Uri = OAuthUtility.BuildAuthorizationUri(requestToken.Token) @@ -3832,7 +5791,7 @@ '-- TODO: Save the access token to a database, session, xml file, or whereever my user data is stored. - + @@ -3848,7 +5807,9 @@ Tries to the parse querystring parameter. Name of the parameter. + The text. The value of the parameter or an empty string. + @@ -3919,440 +5880,40 @@ The request. The tokens. - + - The User Search Command class. + The user timeline command. - + - Initializes a new instance of the class. - - The request tokens. - The query. - The options. - - - - Initializes the command. - - - - - Gets or sets the query. - - The query. - - - - The get lists command class - - - - - Initializes a new instance of the class. - - The request tokens. - The username. - The options. - - - - Initializes the command. - - - - - The Direct Messages Sent Command class - - - - - Initializes a new instance of the class. + Initializes a new instance of the class. The request tokens. The options. - + Initializes the command. - + - Provides methods to request and modify details of an authorized user's account details. + The Friends Timeline Command class - + - Verifies the user's credentials. - - The tokens. - The options. - - - - - Verifies the user's credentials. - - The tokens. - - - - - Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com - - The tokens. - The options. - - The user, with updated data, as a - - - - - Updates the authenticating user's profile image. - - The tokens. - The avatar image for the profile. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down. - The options. - - The user, with updated data, as a - - - - - Updates the authenticating user's profile image. - - The tokens. - The avatar image for the profile. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down. - - The user, with updated data, as a - - - - - The friends options class. Provides a payload for optional parameters of the class. - - - - - Gets or sets the user id. - - The user id. - - - - Gets or sets the user's screen name. - - The screen name of the user. - - - - Gets or sets the cursor. - - The cursor. - - - - The Retweeted By Me Command. - - - - - Initializes a new instance of the class. + Initializes a new instance of the class. The request tokens. The options. - + - Initializes the command. + Inits this instance. - - - The delete friendship command class. - - - - - The base address to the API method. - - - - - Initializes a new instance of the class. - - The request tokens. - The user id. - The user name. - The optional properties. - - - - Initializes the command. - - - - - Gets or sets the user id. - - The user id. - - - - Gets or sets the username. - - The username. - - - - The Create Friendship Options class - - - - - Gets or sets the cursor. - - The cursor. - - - - Gets or sets the ID of the user for whom to request a list of followers. - - The user id. - - - - Gets or sets the screen name of the user for whom to request a list of followers. - - The name of the screen. - - - - The list favorites options class. Provides a payload for optional parameters of the ListFavoritesCommand class. - - - - - Gets or sets the number of favorites to return. - - The number of favorites to return per page. - - - - Gets or sets the user name or id of the user for whom to return results for. - - The user name or id of the user for whom to return results for. - - - - Gets or sets the page. - - The page number. - - - - The Twitter Search Result Collection class - - - - - Deserializes the specified value. - - The value. - - - - - The Twitter Search Result class. - - - - - Gets or sets the profile image URL. - - The profile image URL. - - - - Gets or sets the created date. - - The created date. - - - - Gets or sets the name of from user screen. - - The name of from user screen. - - - - Gets or sets from user id. - - From user id. - - - - Gets or sets the name of to user screen. - - The name of to user screen. - - - - Gets or sets to user id. - - To user id. - - - - Gets or sets the status text. - - The status text. - - - - Gets or sets the status id. - - The status id. - - - - Gets or sets the source. - - The source. - - - - Gets or sets the language. - - The language. - - - - Gets or sets the geo location associated with the result. - - The geo location data. - - - - Gets or sets the location. - - The location. - - - - Provides data about the user's current rate limiting. - - - - - Gets the remaining number of requests until requests are denied. - - The remaining requests. - - - - Gets the total number of requests allowed before requests are denied. - - The total number of requests. - - - - Gets the date the remaining number of requests will be reset. - - The reset date. - - - - The command to obtain followers of a user. - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - The ListFavoritesCommand class. Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Initializes the command. - - - - - The information class which gives general information about the assembly. - - - - - Obtains the current assembly version. - - The assembly version string in the format (#.#.#.#) - - - - The Public Timeline Command class - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - Represents a pre-parsed url located within the body of a . - - - - - Initializes a new instance of the class. - - - - - Gets or sets the URL parsed from the tweet text. - - The parsed URL. - - - - Gets or sets the Display URL parsed from the tweet text. - - The parsed Display URL. - - - - Gets or sets the Expanded URL parsed from the tweet text. - - The parsed Expanded URL. - Represents multiple objects. @@ -4382,94 +5943,812 @@ The calling serializer. The object value. - + - The TwitterTrendCollection class. Represents multiple elements. + Writes the JSON representation of the object. + The to write to. + The value. + The calling serializer. + This is a best attempt to recreate the structure created by the Twitter API. - + - The Json converter class for the TwitterTrendCollection object + Writes the media entity. + The w. + The e. - + - Determines whether this instance can convert the specified object type. + Writes an entity. - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - + + The writer. + The entities. + Name of the entity. + The details action. - + - Reads the json. + Parses the media entity. The reader. - Type of the object. - The existing value. - The serializer. - A collection of items. + - + - Writes the json. - - The writer. - The value. - The serializer. - - - - The UserTimelineOptions class. Provides a payload for optional parameters of the class. + The TwitterSavedSearch class. Provides static methods for manipulating saved searches tweets. - + - Gets or sets the ID of the user for whom to request a list of followers. + Creates the saved search specified in the query parameter as the authenticating user. + + The tokens. + The query. + The options. + The saved search when successful. + + + + Creates the saved search specified in the query parameter as the authenticating user. + + The tokens. + The query. + The saved search when successful. + + + + Deletes the saved search specified in the ID parameter as the authenticating user. + + The tokens. + The saved search id. + The options. + The deleted saved search in the requested format when successful. + + + + Deletes the saved search specified in the ID parameter as the authenticating user. + + The tokens. + The saved search id. + + The deleted saved search in the requested format when successful + + + + + Returns the the authenticating user's saved search queries in the requested format. + + The tokens. + The options. + The saved searches + + + + Returns the the authenticating user's saved search queries in the requested format. + + The tokens. + The saved searches + + + + Returns the the authenticating user's saved search queries in the requested format. + + The options. + The saved searches + + + + Gets or sets the Id. + + The Id of the saved search. + + + + Gets or sets the name. + + The name of the saved search. + + + + Gets or sets the query. + + The query. + + + + Gets or sets the position. + + The position. + + + + Gets or sets the created at date time. + + The created at. + + + + The list statuses options class. Provides a payload for the ListStatusesCommand class. + + + + + Gets or sets the since id. + + The since id. + + + + Gets or sets the max id. + + The max id. + + + + Gets or sets the number of items per page to request. + + The number of items per page. + + + + Gets or sets the page. + + The page number. + + + + Gets or sets whether to include entities in the request. + + Boolean. + + + + The optional properties for the class. + + + + + Gets or sets the cursor. + + The cursor. + + + + Identifies command classes that must enforce rate limiting. This will cause rate status to be queried before each command call. + + + + + Initializes a new instance of the class. + + + + + The TwitterStatus class represents a twitter status (also refered to as a tweet) and provides methods for interacting with status-centric API methods. + + + + + Returns the status text with HTML links to users, urls, and hashtags. + + + + + + Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. + + The tokens. + The status text. + A object of the newly created status. + + + + Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. + + The tokens. + The status text. + The options. + + A object of the newly created status. + + + + + Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. + + The tokens. + The status text. + The file to upload. + The options. + + A object of the newly created status. + + + + + Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. + + The tokens. + The status text. + The file location. + The options. + + A object of the newly created status. + + + + + Deletes the specified status. + + The oauth tokens. + The status id. + The options. + + A object of the deleted status. + + + + + Deletes the specified status. + + The oauth tokens. + The status id. + A object of the deleted status. + + + + Returns a single status, with user information, specified by the id parameter. + + The tokens. + The status id. + The options. + A instance. + + + + Returns a single status, with user information, specified by the id parameter. + + The tokens. + The status id. + A instance. + + + + Returns a single status, with user information, specified by the id parameter. + + The status id. + A instance. + + + + Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) + + The tokens. + The status id. + The options. + A representing the newly created tweet. + + + + Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) + + The tokens. + The status id. + A representing the newly created tweet. + + + + Returns up to 100 of the first retweets of a given tweet. + + The tokens. + The status id. + The options. + + A instance. + + + + + Returns up to 100 of the first retweets of a given tweet. + + The tokens. + The status id. + A instance. + + + + Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) + + The tokens. + The options. + + A representing the newly created tweet. + + + + + Retweets a tweet. Requires the id parameter of the tweet you are retweeting. (say that 5 times fast) + + The tokens. + + A representing the newly created tweet. + + + + + Deletes the status. + + The oauth tokens. + The options. + + A object of the deleted status. + + + + + Deletes the status. + + The oauth tokens. + + A object of the deleted status. + + + + + Shows Related Results of a tweet. Requires the id parameter of the tweet you are getting results for. + + The tokens. + The status id. + A representing the newly created tweet. + + + + + Shows Related Results of a tweet. Requires the id parameter of the tweet you are getting results for. + + The tokens. + The status id. + The options. + A representing the newly created tweet. + + + + Gets or sets the status id. + + The status id. + + + + Gets or sets the string id. + + The string id. + + + + Gets or sets a value indicating whether this status message is truncated. + + + true if this status message is truncated; otherwise, false. + + + + + Gets or sets the created date. + + The created date. + + + + Gets or sets the source. + + The source. + + + + Gets or sets the screenName the status is in reply to. + + The screenName. + + + + Gets or sets the user id the status is in reply to. The user id. - + - Gets or sets the screen name of the user for whom to request a list of followers. + Gets or sets the status id the status is in reply to. - The name of the screen. + The status id. - + - The TwitterSavedSearchCollection class. + Gets or sets a value indicating whether the authenticated user has favorited this status. + + + true if this instance is favorited; otherwise, false. + + + + + Gets or sets the text of the status. + + The status text. + + + + Gets or sets the user. + + The user that posted this status. + + + + Gets or sets the retweeted status. + + The retweeted status. + + + + Gets or sets the place. + + The place. + + + + Gets or sets the geo location data. + + The geo location data. + + + + Gets or sets the entities. + + The entities. + + + + Gets or sets the retweet count string. + + The retweet count. + + + + Gets the retweet count. + + The retweet count. + + + + Gets a value indicating that the number of retweets exceeds the reported value in RetweetCount. For example, "more than 100" + + The retweet count plus indicator. + + + + Gets or sets a value indicating whether this is retweeted. + + true if retweeted; otherwise, false. + + + Contains security tokens nessisary for performing authorized actions against the Twitter API + To perform authorized actions, you must create a new OAuthTokens variable and supply values for the , , , and properties, as follows: + + OAuthTokens tokens = new OAuthTokens(); + tokens.AccessToken = "XXX"; + tokens.AccessTokenSecret = "XXX"; + tokens.ConsumerKey = "XXX"; + tokens.ConsumerSecret = "XXX"; + + + Dim tokens As new OAuthTokens(); + tokens.AccessToken = "XXX" + tokens.AccessTokenSecret = "XXX" + tokens.ConsumerKey = "XXX" + tokens.ConsumerSecret = "XXX" + + + + + + Gets or sets the access token. + + The access token. + + + + Gets or sets the access token secret. + + The access token secret. + + + + Gets or sets the consumer key. + + The consumer key. + + + + Gets or sets the consumer secret. + + The consumer secret. + + + + Gets a value indicating whether this instance has consumer token values. + + + true if this instance has consumer token; otherwise, false. + + + + + Gets a value indicating whether this instance has access token values. + + + true if this instance has access token; otherwise, false. + + + + + Gets a value indicating whether this instance has values. This does not verify that the values are correct. + + + true if this instance has values; otherwise, false. + + + + + The get list statuses command class - + - The reverse geocode command class. Performs a reverse geocode lookup. + Initializes a new instance of the class. - - - - Initializes a new instance of the class. - - The latitude. - The longitude. + The request tokens. + The username. + The list id or slug. The options. + - + Initializes the command. - + - Gets or sets the latitude. + The notification leave command class. - The latitude. - + - Gets or sets the longitude. + Initializes a new instance of the class. + + The tokens. + The user id. + Name of the screen. + The options. + + + + Inits this instance. + + + + + Gets or sets the user id. + + The user id. + + + + Gets or sets the name of the screen. + + The name of the screen. + + + + The create list command class + + + + + Initializes a new instance of the class. + + The request tokens. + The username. + The list id or slug. + The options. + + + + Initializes the command. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Inits this instance. + + + + + The list favorites options class. Provides a payload for optional parameters of the ListFavoritesCommand class. + + + + + Gets or sets the number of favorites to return. + + The number of favorites to return per page. + + + + Gets or sets the user name or id of the user for whom to return results for. + + The user name or id of the user for whom to return results for. + + + + Gets or sets the page. + + The page number. + + + + The Delete Direct Message Command class. + + + + + Initializes a new instance of the class. + + The request tokens. + The status id. + The options. + + + + Initializes the command. + + + + + Gets or sets the status id. + + The status id. + + + + The twitter list collection class. + + + + + Deserializes the specified value. + + The value. + + + + + Gets or sets the next cursor. + + The next cursor. + + + + Gets or sets the previous cursor. + + The previous cursor. + + + + Gets or sets information about the user's rate usage. + + The rate limiting object. + + + + Provides common color converstion methods + + + + + + Converts the color string to a + + The value. + A representation of the color, or null. + + + + Reads the stream into a byte array. + + The response stream. + A byte array. + + + + The Retweets of Me options class. Provides optional parameters for the RetweetsOfMeCommand class. + + + + + Gets or sets the since status id. + + The since status id. + + + + Gets or sets the max status id. + + The max status id. + + + + Gets or sets the count of tweets to return. + + The count of tweets. + + + + Gets or sets the page number to return. + + The page number. + + + + Initializes a new instance of the class. + + The tokens. + The user id. + Name of the screen. + The options. + + + + Inits this instance. + + + + + Gets or sets the user id. + + The user id. + + + + Gets or sets the name of the screen. + + The name of the screen. + + + + The ListFavoritesCommand class. Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. + + + + + Initializes a new instance of the class. + + The tokens. + The options. + + + + Initializes the command. - The longitude. @@ -4511,435 +6790,115 @@ Boolean. - + - The TwitterTrend class. + Optional properties for the class. - - - Gets the current trends. - - The options. - - A collection of objects. - - - - - Gets the current trends. - - - A collection of objects. - - - + Gets or sets the name. - The name of the trend. + The name. - + - Gets or sets the address. + Gets or sets the URL. - The address. + The URL. - + - Gets or sets the search query. + Gets or sets the location. - The search query. + The location. - + - The Twitter Result Type Enumeration + Gets or sets the description. + + The description. + + + + Optional properties for the method. - + - In a future release this will become the default value. Include both popular and real time results in the response. + Gets or sets the color of the background. + + The color of the background. + + + + Gets or sets the color of the text. + + The color of the text. + + + + Gets or sets the color of the link. + + The color of the link. + + + + Gets or sets the color of the sidebar fill. + + The color of the sidebar fill. + + + + Gets or sets the color of the sidebar border. + + The color of the sidebar border. + + + + The user search options class. Provides a payload for optional parameters of the UserSearchCommand class. - + - The current default value. Return only the most recent results in the response. + Gets or sets the number per page. Cannot be greater than 20. + + The number per page. + + + + Gets or sets the page of results to retrieve. + + The page of results to retrieve. + + + + Provides optional parameters for user lookup methods. - + - Return only the most popular results in the response. + Initializes a new instance of the class. - + - The user timeline command. + Gets or sets the screen names. + The screen names. - + - Initializes a new instance of the class. + Gets or sets the user ids. - The request tokens. - The options. + The user ids. - - - Initializes the command. - - - - - The twitter place class. Represents a place or area. - - - - - Retrieves a place based on the specified coordinates. - - The latitude. - The longitude. - The options. - A collection of matched items. - - - - Retrieves a place based on the specified coordinates. - - The latitude. - The longitude. - A collection of matched items. - - - - Gets or sets the country code. - - The country code. - - - - Gets or sets the type of the place. - - The type of the place. - - - - Gets or sets the address of the data. - - The address of the data. - - - - Gets or sets the country. - - The country. - - - - Gets or sets the address of the street. - - The address of the street. - - - - Gets or sets the full name. - - The full name. - - - - Gets or sets the name of the place. - - The name of the place. - - - - Gets or sets the place id. - - The place id. - - - - Gets or sets the bounding box. - - The bounding box. - - - - The twitter bounding box class. Represents a series of latitude and longitude coordinates that represents an area. - - - - - Gets or sets the type. - - The type of bounding box. - - - - Gets or sets the coordinates. - - The coordinates. - - - - The Direct Messages Command - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - The Delete Direct Message Command class. - - - - - Initializes a new instance of the class. - - The request tokens. - The status id. - The options. - - - - Initializes the command. - - - - - Gets or sets the status id. - - The status id. - - - - The Verify Credentials Options class. Provides a payload for optional parameters for the Verify Credentials Command. - - - - - Initializes a new instance of the class. - - - + Gets or sets a value indicating whether [include entities]. true if [include entities]; otherwise, false. - - - The twitter response class provides details of the response from an api call to the twitter api. - - - - - - Gets or sets the object that represents the data returned by the request to Twitter. - - The response object. - - - - Gets or sets the result of the request. - - The result. - - - - Gets or sets the request URL. - - The request URL. - - - - Gets the raw json or xml response provided by Twitter. - - The response body. - - - - Gets or sets the error message returned by the Twitter. - - The error message. - - - - Gets or sets the oauth tokens provided for the request. - - The tokens. - - - - Gets or sets a value indicating whether the response was retrieved from a cache. - - true if [response cached]; otherwise, false. - - - - Gets or sets the rate limiting details. - - The rate limiting object. - - - - Gets or sets the OAuth Token Access Level details. - - The access level. - - - - The CursorCursorPagedCommand class. - - The type of BaseObject that the command returns. - - - - - Initializes a new instance of the class. - - The method. - The end point. - The tokens. - The options. - - - - Gets or sets the cursor. - - The cursor. - - Optional. - Breaks the results into pages. - A single page contains 100 users. - - - - - The Retweets of Me options class. Provides optional parameters for the RetweetsOfMeCommand class. - - - - - Gets or sets the since status id. - - The since status id. - - - - Gets or sets the max status id. - - The max status id. - - - - Gets or sets the count of tweets to return. - - The count of tweets. - - - - Gets or sets the page number to return. - - The page number. - - - - Add a member to a list. The authenticated user must own the list to be able to add members to it. Lists are limited to having 500 members. - - - - - Initializes a new instance of the class. - - The request tokens. - The owner username. - The list id. - The user id. - The options. - - - - Initializes the command. - - - - - Gets or sets the user id. - - The user id. - - - - The verify credentials command class. - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - Initializes a new instance of the class. - - The tokens. - The image. - The options. - - - - Initializes the command. - - - - - The twitter list collection class. - - - - - Deserializes the specified value. - - The value. - - - - - Gets or sets the next cursor. - - The next cursor. - - - - Gets or sets the previous cursor. - - The previous cursor. - - - - Gets or sets information about the user's rate usage. - - The rate limiting object. - The Retweets Of Me Command. @@ -4957,109 +6916,81 @@ Initializes the command. - + - The available search result type filter options. + The Public Timeline Command class - + - Use Twitter's default + Initializes a new instance of the class. + + The request tokens. + The options. + + + + Initializes the command. - + - Include both popular and real time results in the response. + The TwitterTrendLocationCollection class. Represents multiple elements. - + - Return only the most recent results in the response. + The Json converter class for the TwitterTrendLocationCollection object - + - Return only the most popular results in the response. + Determines whether this instance can convert the specified object type. + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + - + - The search options class. Provides a payload for optional parameters for the SearchCommand class. + Reads the json. + The reader. + Type of the object. + The existing value. + The serializer. + A collection of items. - + - Initializes a new instance of the class. + Writes the json. + The writer. + The value. + The serializer. - + - Gets or sets the language. + Initializes a new instance of the class. - The language. + The tokens. + The list id. + The options. + - + - Gets or sets the locale. + Inits this instance. - The locale. + - + - Gets or sets the max id. + Gets or sets the list id. - The max id. - - - - Gets or sets the number per page. - - The number per page. - - - - Gets or sets the page number. - - The page number. - - - - Gets or sets the since date. - - The since date. - - - - Gets or sets the since id. - - The since id. - - - - Gets or sets the geo code string. - The parameter value is specified by "latitude,longitude,radius", where radius units must be specified as either "mi" (miles) or "km" (kilometers). Note that you cannot use the near operator via the API to geocode arbitrary locations; however you can use this geocode parameter to search near geocodes directly. - - The geo code. - - - - Gets or sets a value indicating whether to prefix the user name to the tweet. - - - true to prefix the user name to the tweet; otherwise, false. - - - - - Gets or sets the until date. - - The until date. - - - - Gets or sets the type of the result. - - The type of the result. + The list id. + @@ -5078,476 +7009,110 @@ Initializes the command. - + - The XAuthUtility class. + The TwitterFavorite class. Provides static methods for manipulating favorite tweets. - + - Allows OAuth applications to directly exchange Twitter usernames and passwords for OAuth access tokens and secrets. - - The consumer key. - The consumer secret. - The username. - The password. - A instance. - - - - The Serialization Helper class. Provides a simple interface for common serialization tasks. - - The type of object to be deserialized - - - - Deserializes the specified web response. - - The web response data. - The deserialization handler. - - A strongly typed object representing the deserialized data of type - - - - - Deserializes the specified web response. - - The web response data. - - A strongly typed object representing the deserialized data of type - - - - - The JavascriptConversionDelegate. The delegate is invokes when using the JavaScriptSerializer to manually construct a result object. - - Contains nested dictionary objects containing deserialized values for manual parsing. - A strongly typed object representing the deserialized data of type - - - - - The create list command class + Prevents a default instance of the TwitterFavorite class from being created. - + - Initializes a new instance of the class. - - The request tokens. - The query. - The options. - - - - Initializes the command. - - - - - Gets or sets the query. - - The query. - - - - The UpdateListOptions class. Provides a payload for optional parameters for the UpdaetListCommand class. - - - - - Gets or sets the name of the list. - - The name of the list. - - - - Gets or sets a value indicating whether this instance is public. - - true if this instance is public; otherwise, false. - - - - Gets or sets the description. - - The description. - - - - The list statuses options class. Provides a payload for the ListStatusesCommand class. - - - - - Gets or sets the since id. - - The since id. - - - - Gets or sets the max id. - - The max id. - - - - Gets or sets the number of items per page to request. - - The number of items per page. - - - - Gets or sets the page. - - The page number. - - - - Gets or sets whether to include entities in the request. - - Boolean. - - - - Provides optional parameters for the method. - - - - - Gets or sets the cursor. - - The cursor. - - - - Check if a user is a member of the specified list. - - - - - Initializes a new instance of the class. - - The request tokens. - The owner username. - The list id. - The user id. - The options. - - - - Initializes the command. - - - - - Provides common color converstion methods - - - - - - Converts the color string to a - - The value. - A representation of the color, or null. - - - - Reads the stream into a byte array. - - The response stream. - A byte array. - - - - The update list command class - - - - - Initializes a new instance of the class. + Favorites the status specified in the ID parameter as the authenticating user. The tokens. - The username. - The list id. + The status id. The options. + The favorite status when successful. - + - Initializes the command. - - - - - The get list statuses command class - - - - - Initializes a new instance of the class. - - The request tokens. - The username. - The list id. - The options. - - - - Initializes the command. - - - - - Represents a pre-parsed hash tag in a value. - - - - - Initializes a new instance of the class. - - - - - Gets or sets the hash tag text. - - The hash tag text. - - - - Provides methods for reporting users and tweets as inappropriate or spam. - - - - - Blocks the user and reports them for spam/abuse. + Favorites the status specified in the ID parameter as the authenticating user. The tokens. - The user id. - The options. - The user details. + The status id. + The favorite status when successful. - + - Blocks the user and reports them for spam/abuse. + Un-favorites the status specified in the ID parameter as the authenticating user. The tokens. - The user id. - The user details. + The status id. + The options. + The un-favorited status in the requested format when successful. - + - Blocks the user and reports them for spam/abuse. + Un-favorites the status specified in the ID parameter as the authenticating user. The tokens. - The user's screen name. - The options. - The user details. - - - - Blocks the user and reports them for spam/abuse. - - The tokens. - The user's screen name. - The user details. - - - - The create list command class - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. - - - - - Returns the members of the specified list. - - - - - Initializes a new instance of the class. - - The request tokens. - The username. - The list id or slug. - The options. - - - - Initializes the command. - - - - - The Twitter Rate Limit Status class - - - - - Gets the rate limiting status status for the authenticated user. - - The OAuth tokens. - The options. + The status id. - A instance. + The un-favorited status in the requested format when successful. - + - Gets the rate limiting status status based on the application's IP address. + Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - The OAuth tokens. - - A instance. - - - - - Gets the rate limiting status status based on the application's IP address. - - - A instance. - - - - - Gets or sets the remaining hits. - - The remaining hits. - - - - Gets or sets the hourly limit. - - The hourly limit. - - - - Gets or sets the UTC string value of the time rate limiting will reset. - - The reset time string. - - - - The command to update the user's status. (a.k.a. post a new tweet) - - - - - Initializes a new instance of the class. - - The request tokens. - The status text. - The optional properties. - - - - Initializes the command. - - - - - Gets or sets the status text. - - The status text. - - - - The rate limit status command class. - - - - - Initializes a new instance of the class. - - The request tokens. + The tokens. The options. + The 20 most recent favorite statuses - + - Initializes the command. + Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. + The tokens. + The 20 most recent favorite statuses - + - The Friends Timeline Command class + Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format. - - - - Initializes a new instance of the class. - - The request tokens. The options. + The 20 most recent favorite statuses - + - Inits this instance. + The delete favoriate command class. + Un-favorites the status specified in the ID parameter as the authenticating user. + Returns the un-favorited status in the requested format when successful. - + - The Retweets Options class. Provides a payload for optional parameters for the Retweets Command + Initializes a new instance of the class. - - - - Gets or sets the count of statuses to return. - - The number of statuses to return. - - - - The Related Results Command. - - - - - The base address to the API method. - - - - - Initializes a new instance of the class. - - The request tokens. + The tokens. The status id. The options. - + Initializes the command. - + - Provides a payload for optional parameters for the method. + The Create Favorite Command class. Favorites the status specified in the ID parameter as the authenticating user. Returns the favorite status when successful. - + - A hint on the "region" in which to search. If a number, then this is a radius in meters, but it can also take a string that is suffixed with ft to specify feet. If this is not passed in, then it is assumed to be 0m. If coming from a device, in practice, this value is whatever accuracy the device has measuring its location (whether it be coming from a GPS, WiFi triangulation, etc.). + Initializes a new instance of the class. + The tokens. + The status id. + The options. - + - The minimal granularity of data to return. If this is not passed in, then neighborhood is assumed. city can also be passed. - - - - - A hint as to the number of results to return. This does not guarantee that the number of results returned will equal max_results, but instead informs how many "nearby" results to return. Ideally, only pass in the number of places you intend to display to the user here. + Initializes the command. @@ -5604,336 +7169,55 @@ The name of the recipient user. - + - Optional properties for the method. + The Direct Messages Command - + - Gets or sets the color of the background. - - The color of the background. - - - - Gets or sets the color of the text. - - The color of the text. - - - - Gets or sets the color of the link. - - The color of the link. - - - - Gets or sets the color of the sidebar fill. - - The color of the sidebar fill. - - - - Gets or sets the color of the sidebar border. - - The color of the sidebar border. - - - - Identifies command classes that must enforce rate limiting. This will cause rate status to be queried before each command call. - - - - - Initializes a new instance of the class. - - - - - The Status Update Options class - - - - - Initializes a new instance of the class. - - - - - Gets or sets the in reply to status id. - - The in reply to status id. - - - - Gets or sets the latitude. - - The latitude. - - - - Gets or sets the longitude. - - The longitude. - - - - Gets or sets a value indicating whether or not to put a pin on the exact coordinates a tweet has been sent from. - - true to put a pin on the exact coordinates; otherwise, false. - - - - Gets or sets a place in the world. These IDs can be retrieved from geo/reverse_geocode. - - The place id. - - - - The retweets command class. - - - - - Initializes a new instance of the class. - - The request tokens. - The status id. - The options. - - - - Initializes the command. - - - - - Gets or sets the status id. - - The status id. - - - - The Retweeted By Me Command. - - - - - Initializes a new instance of the class. + Initializes a new instance of the class. The request tokens. The options. - + Initializes the command. - + - Provides interaction with timelines + The blocking ids command class - - - Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. This is the equivalent of /timeline/home on the Web. - - The tokens. - The options. - A collection of items. - - - The tokens. - A collection of items. - - - The options. - A collection of items. - - + - Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. - - The oauth tokens. - The options. - - A instance. - - - - - Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. - - The oauth tokens. - - A instance. - - - - - Returns the 20 most recent statuses posted by the authenticating user. It is also possible to request another user's timeline by using the screen_name or user_id parameter. - - The options. - - A instance. - - - - - Gets the public timeline. - - A . - - - - Gets the public timeline. - - The oauth tokens. - - A . - - - - - Gets the public timeline. - - The properties. - - A . - - - - - Gets the public timeline. - - The oauth tokens. - - A . - - - - - Obtains the authorized user's friends timeline. - - The tokens. - A . - - - - Obtains the authorized user's friends timeline. + Initializes a new instance of the class. The tokens. The options. - A . - + - Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. + Inits this instance. + + + + + The update profile command class. + + + + + Initializes a new instance of the class. The tokens. The options. - A instance. - + - Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. - - The tokens. - - A instance. - - - - - Returns the 20 most recent retweets posted by the authenticating user. - - The tokens. - The options. - A instance. - - - - Returns the 20 most recent retweets posted by the authenticating user. - - The tokens. - - A instance. - - - - - Returns the 20 most recent retweets posted by the authenticating user's friends. - - The tokens. - The options. - A instance. - - - - Returns the 20 most recent retweets posted by the authenticating user's friends. - - The tokens. - - A instance. - - - - - Returns the 20 most recent mentions (status containing @username) for the authenticating user. - - The tokens. - The options. - A instance. - - - - Returns the 20 most recent mentions (status containing @username) for the authenticating user. - - The tokens. - - A instance. - - - - - The Create Saved Search Command class. Creates the Saved Search with the query provided as the authenticating user. Returns the saved search when successful. - - - - - Initializes a new instance of the class. - - The tokens. - The query. - The options. - - - - Initializes the command. - - - - - Gets or sets the query. - - The query. - - - - Returns the members of the specified list. - - - - - Initializes a new instance of the class. - - The request tokens. - The options. - - - - Initializes the command. + Inits this instance. @@ -5953,856 +7237,5 @@ Initializes the command. - - - Indicates that a command class requires authorization tokens. - - - - - Initializes a new instance of the class. - - - - - Describes the access level of the OAuth Token - - - - - The request may not be authenticated or the Access Level header was missing from the response. - - - - - The OAuth token has read access levels only. - - - - - The OAuth token has read write access only. - - - - - The OAuth token has read write and direct messages access. - - - - - There was no OAuth token access level available for reading in the response headers. - - - - - Holds a collection of ID values that are broken into multiple pages. - - - - - Deserializes the specified value. - - The value. - - - - - Annotations are additional pieces of data, supplied by Twitter clients, in a non-structured dictionary. - - The annotations. - - - - Gets or sets the next cursor. - - The next cursor. - - - - Gets or sets the previous cursor. - - The previous cursor. - - - - The retweeted by command class. - - http://dev.twitter.com/doc/get/statuses/:id/retweeted_by - - - - Inits this instance. - - - - - The optional parameters for the class. - - - - - Specifies the number of records to retrieve. Must be less than or equal to 100. - - The count. - - - - Specifies the page of results to retrieve. - - The page. - - - - When set to true each tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object. - - true if [trim user]; otherwise, false. - - - - Gets or sets a value indicating whether entities should be included in the results. - - true if entities should be included; otherwise, false. - - - - The retweeted by ids command class. - - http://dev.twitter.com/doc/get/statuses/:id/retweeted_by/ids - - - - Inits this instance. - - - - - Specifies the number of records to retrieve. Must be less than or equal to 100. - - The count. - - - - Specifies the page of results to retrieve. - - The page. - - - - When set to true each tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object. - - true if [trim user]; otherwise, false. - - - - Gets or sets a value indicating whether entities should be included in the results. - - true if entities should be included; otherwise, false. - - - - The suggested users categories command - - http://dev.twitter.com/doc/get/users/suggestions - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - The suggested users command class - - http://dev.twitter.com/doc/get/users/suggestions/:slug - - - - Initializes a new instance of the class. - - The tokens. - The category slug. - The options. - - - - Inits this instance. - - - - - Gets or sets the slug. - - The slug. - - - - Represents a suggested user category - - - - - Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in the users/suggestions/category endpoint to get the users in that category. - - The tokens. - The options. - A collection of categories without user data. - - - - Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in the users/suggestions/category endpoint to get the users in that category. - - The tokens. - - A collection of categories without user data. - - - - - Access the users in a given category of the Twitter suggested user list. - - The tokens. - The category slug. - The options. - - It is recommended that end clients cache this data for no more than one hour. - - - - Access the users in a given category of the Twitter suggested user list. - - The tokens. - The category slug. - - It is recommended that end clients cache this data for no more than one hour. - - - - Gets or sets the name. - - The name. - - - - Gets or sets the slug. - - The slug. - - - - Gets or sets the number of users. - Only available in list of categories. - - The number of users. - - - - Gets or sets the users. - Users are only returned for a single category. - - The users. - - - - Represents a suggested category - - - - - The notification follow command class. - - - - - Initializes a new instance of the class. - - The tokens. - The user id. - Name of the screen. - The options. - - - - Inits this instance. - - - - - Gets or sets the user id. - - The user id. - - - - Gets or sets the name of the screen. - - The name of the screen. - - - - Provides methods to update a user's preferences on notifications. For example, whether a user will be notified on mention via SMS. - - - - - Enables device notifications for updates from the specified user. Returns the specified user when successful. - - The tokens. - The user id. - The options. - - - - - Enables device notifications for updates from the specified user. Returns the specified user when successful. - - The tokens. - The user id. - - - - - Enables device notifications for updates from the specified user. Returns the specified user when successful. - - The tokens. - The user's screen name. - The options. - - - - - Enables device notifications for updates from the specified user. Returns the specified user when successful. - - The tokens. - The user's screen name. - - - - - Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. - - The tokens. - The user id. - The options. - - - - - Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. - - The tokens. - The user id. - - - - - Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. - - The tokens. - The user's screen name. - The options. - - - - - Disables notifications for updates from the specified user to the authenticating user. Returns the specified user when successful. - - The tokens. - The user's screen name. - - - - - The notification leave command class. - - - - - Initializes a new instance of the class. - - The tokens. - The user id. - Name of the screen. - The options. - - - - Inits this instance. - - - - - Gets or sets the user id. - - The user id. - - - - Gets or sets the name of the screen. - - The name of the screen. - - - - Initializes a new instance of the class. - - The tokens. - The list id. - The options. - - - - Inits this instance. - - - - - The Get Lists Options class - - - - - Gets or sets the cursor. - - The cursor. - - - - The optional parameters for the class. - - - - - Gets or sets the cursor. - - The cursor. - - - - The optional parameters for the class - - - - - Gets or sets the cursor. - - The cursor. - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - The optional properties for the class. - - - - - Gets or sets the cursor. - - The cursor. - - - - The optional properties for the class. - - - - - Gets or sets the cursor. - - The cursor. - - - - Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user. - - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - The blocking command class. - - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - Provides methods for interacting with user blocks. - - - - - Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - - The tokens. - The user id. - The options. - - The blocked user in the requested format when successful. - - - - - Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - - The tokens. - The user id. - - The blocked user in the requested format when successful. - - - - - Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - - The tokens. - The user's screen name. - The options. - - The blocked user in the requested format when successful. - - - - - Blocks the user specified as the authenticating user. Destroys a friendship to the blocked user if it exists. - - The tokens. - The user's screen name. - - The blocked user in the requested format when successful. - - - - - Unblocks the user specified as the authenticating user. - - The tokens. - The user id. - The options. - - The unblocked user in the requested format when successful. - - - - - Unblocks the user specified as the authenticating user. - - The tokens. - The user id. - - The unblocked user in the requested format when successful. - - - - - Unblocks the user specified as the authenticating user. - - The tokens. - The user's screen name. - The options. - - The unblocked user in the requested format when successful. - - - - - Unblocks the user specified as the authenticating user. - - The tokens. - The user's screen name. - - The unblocked user in the requested format when successful. - - - - - Checks for a block against the the user specified as the authenticating user. - - The tokens. - The user id. - The options. - - The blocked user in the requested format when successful. - - - - - Checks for a block against the the user specified as the authenticating user. - - The tokens. - The user id. - - The blocked user in the requested format when successful. - - - - - Checks for a block against the the user specified as the authenticating user. - - The tokens. - The user's screen name. - The options. - - The blocked user in the requested format when successful. - - - - - Checks for a block against the the user specified as the authenticating user. - - The tokens. - The user's screen name. - - The blocked user in the requested format when successful. - - - - - Returns a collection of user objects that the authenticating user is blocking. - - The tokens. - The options. - - - - - Returns a collection of user objects that the authenticating user is blocking. - - The tokens. - The options. - - - - - Returns an collection of user ids the authenticating user is blocking. - - The tokens. - The options. - A collection of user ids. - - - - Returns an collection of user ids the authenticating user is blocking. - - The tokens. - A collection of user ids. - - - - The blocking ids command class - - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - The optional parameters for the class. - - - - - Gets or sets the page. - - The page. - - - - The create block command class. - - http://dev.twitter.com/doc/post/blocks/create - - - - Initializes a new instance of the class. - - The tokens. - Name of the screen. - The user id. - The options. - - - - Inits this instance. - - - - - Gets or sets the name of the screen. - - The name of the screen. - - - - Gets or sets the user id. - - The user id. - - - - The destroy block command class. - - http://dev.twitter.com/doc/post/blocks/destroy - - - - Initializes a new instance of the class. - - The tokens. - Name of the screen. - The user id. - The options. - - - - Inits this instance. - - - - - Gets or sets the name of the screen. - - The name of the screen. - - - - Gets or sets the user id. - - The user id. - - - - The exists block command class. - - http://dev.twitter.com/doc/post/blocks/exists - - - - Initializes a new instance of the class. - - The tokens. - Name of the screen. - The user id. - The options. - - - - Inits this instance. - - - - - Gets or sets the name of the screen. - - The name of the screen. - - - - Gets or sets the user id. - - The user id. - - - - The update profile command class. - - - - - Initializes a new instance of the class. - - The tokens. - The options. - - - - Inits this instance. - - - - - Optional properties for the class. - - - - - Gets or sets the name. - - The name. - - - - Gets or sets the URL. - - The URL. - - - - Gets or sets the location. - - The location. - - - - Gets or sets the description. - - The description. - - - - Represents a pre-parsed media entity located within the body of a . - - - - - Initializes a new instance of the class. - - diff --git a/packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.dll b/packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.dll new file mode 100644 index 000000000..d59a7317d Binary files /dev/null and b/packages/twitterizer.2.4.0.26532/lib/net40/Twitterizer2.dll differ diff --git a/packages/twitterizer.2.4.0.26532/twitterizer.2.4.0.26532.nupkg b/packages/twitterizer.2.4.0.26532/twitterizer.2.4.0.26532.nupkg new file mode 100644 index 000000000..bad7cfb11 Binary files /dev/null and b/packages/twitterizer.2.4.0.26532/twitterizer.2.4.0.26532.nupkg differ